I want to draw a line using CSS 3 and place it under an element. The obvious choice for this is the border-bottom, which I set to solid. The resulting line is a little bit thicker than I want it. Is there a way I can make it thinner?
Edit:
The code. (Sorry, late night sloppiness)
border-bottom: 1px solid #454;
Please, at least show us your code.
What does your CSS say?
1px is the smallest possible line, as in:
but you can give the illusion of beeing smaller with blending the border colour to the background colour or using the dotted style.
might look a little thinner.