Quote:
Originally Posted by RyanCesiel
This is the way I would do it, you can also do it through a <ul> list, also.
CSS:
Code:
.links dl {
margin: 0; /* Prevents moving the list way to the right */
padding: 0; /* Prevents moving the list way to the right */
}
.links dt {
border: 1px solid COLOR HERE; /* Creates the border around the links - like you asked for */
}
HTML:
Code:
<dl>
<dt>LINK CODE HERE</dt>
<dt>and HERE ..</dt>
<dt>and HERE .....</dt>
</dl>
|
I really apriciate all your help! This is the first time i've done a website in 100% CSS coding.
Thanks!