Borders around images

Phreaddee

Super Moderator
Staff member
Code:
img {
border:1px solid #231f20; /*or any colour you choose */
}

.headimage {
border:0;
}

HTML:
<!-- image in header -->
<img class="headimage" src="headimage.jpg" alt="blah blah" />
 

helloworld

New Member
i always reset this in my first few lines of css with the below.. and I get rid of outlines too.
a img { border:0;}
and then if theres a specific need for a border ill target that class' children.
 
Top