css Q
css Q
- Started
- Last post
- 7 Responses
- armed_rob
I need a css code that will put a one pixel line under all my pictures.
Can it be done with css? And how?
- version30
img {
border:0px 0x 1px 0px;
}or something
- version30
more specifically
img {
border-color:white white deeppink;
border-style:none none dotted;
border-width:0px 0px 1px;
}for a pink dotted line at the bottom
- armed_rob0
that only shows if I say 1px 1px 1px 1px
- version30
i'm through here.
- armed_rob0
great thanx man. pink dots rule.
- version30
actually, yes. pink dots do rule.
- welded0
border-bottom: 1px dotted deeppink;