The border-bottom property is a shorthand property for setting all the bottom border properties.
The underline style of the link can be changed by applying this property for the A element.
When this style is set, the default underline must be removed.
(removes the links underline)
a {
text-decoration: none;
border-bottom: 1px #0000a0 dotted;
}
Property |
Value |
Explanation |
border-bottom |
each value |
the bottom border |
Example