HTML/CSS formating

Posted by Codeguy007 on Stack Overflow See other posts from Stack Overflow or by Codeguy007
Published on 2012-11-10T22:39:29Z Indexed on 2012/11/10 23:00 UTC
Read the original article Hit count: 192

Filed under:
|

I'm having to issues lining up items properly in my html code. I am not sure why they are lining up the way I want them to.

First the header My Color Library is a full line height above the horizontal ruler. I want it right above the ruler.

Second my X box in the td with the background is justified right fine but I actually want it in the top right hand corner not centered vertically.

Here's some example html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>FunctionalColor&amp;Design</title>
</head>


<html>
<body>
    <table style="width=900px; margin-left: auto; margin-right: auto;">
        <tr>
            <td>
                <P>
                    <div style="font-size: 1em; line-height: 1em; font-weight: bolder; padding: 0px;">My Color Library</div>
                    <div align="right" class="removeall">
                        <a href="colors">
                            <img src="http://2100computerlane.net/workingproject/images/x-button.png" />
                            <bold>Remove All</bold>
                        </a>
                    </div>
                    <HR/></p>
                    <div class="mycolor">
                        <table><!--width="900px"  -->
                            <tr>
                                <td  style="border: none; background-color: #f8d3cf; width:125px; height:80px; border-spacing: 10px; padding:0;">
                                    <div style="padding:0; vertical-align:top;" align="right" class="remove">
                                        <a href="f8d3cf" style="padding: 0px;">
                                            <img src="http://2100computerlane.net/workingproject/images/x-button.png" style="padding: 0px;"/>
                                        </a>
                                    </div>
                                </td>
                                <td style="border: none; width:10px;"></td>
                                <td style="border: none; background-color: #f8d3cf; width:125px; height:80px; border-spacing: 10px; padding:0;"></td>
                                <td style="border: none; width:10px;"></td>
                                <td style="border: none; background-color: #f8d3cf; width:125px; height:80px; border-spacing: 10px; padding:0;"></td>
                                <td style="border: none; width:10px;"></td>
                                <td style="border: none; background-color: #f8d3cf; width:125px; height:80px; border-spacing: 10px; padding:0;"></td>
                                <td style="border: none; width:10px;"></td>
                                <td style="border: none; background-color: #f8d3cf; width:125px; height:80px; border-spacing: 10px; padding:0;"></td>
                                <td style="border: none; width:10px;"></td>
                                <td style="border: none; background-color: #f8d3cf; width:125px; height:80px; border-spacing: 10px; padding:0;"></td>
                            <tr>
                                <td  style="border: none; font:.6em Arial, Helvetica, sans-serif; width:125px; height:20px;">Desert Warmth<br/>70YR 56/190 A0542</td>                                                   
                            </tr>           
                        </table>        
                    </div>
                </td>
            </tr>
        </table>
    </body>
</html>

© Stack Overflow or respective owner

Related posts about html

Related posts about css