I am learning css-can I do more
To improve my use of css on this page.
http://web-user.net/1test/acsstest.html
I have a few questions listed on the page.
Here is the pages code:
Code:
<html>
<head>
<title>Table test-how to correctly use css and markup for a table with images and text</title>
<style type="text/css">
table,td
{
border: 1px solid black;
border-collapse:collapse;
}
table
{
width:700px;
}
td
{
width:100px;
height:30px;
text-align:center;
}
div{
align:center;
}
#wrapper{
width:500px;
position:absolute;
left:50%;
margin-left:-250px;
}
</style>
</head>
<body>
<br><br>
<table align="center">
<tr>
<td> <img src="http://web-user.net/buttons/gray1.jpg" align="left"></td>
<td><font color="blue" size="1">This is an example of two different buttons.</font></td>
<td><img src="http://web-user.net/buttons/ovalgray2.gif" align="right"> </td>
</tr>
</table>
<br><Br>
<div id="wrapper"style=”text-align: justify; text-justify: newspaper”>
Now for the Questions:
<ol>
<li>Can the width of the '<td>' be made
independantly/different by using css to configure it?</li>
<li>Can units of px help precisely place an image?</li>
<li>I know there is more that can be done but can
some one help me learn more?</li>
<li>I know classes can be used all over but id's are for
one time use( I think -lol )
I get them confused as far as<br> the # and the . goes</li>
</ol>
</div>
</body>
</html>
Thanks Bud
forums don't work that way..........
I am only asking for help to correct the way I am writing the css code.All posts here are either asking for help or answering these questions.
I guess I am asking more then I should be
enough said
bud