New! My 44-page ebook "CSS in 44 minutes" is out! 😃
#border-bottom
Shorthand property for border-bottom-width border-bottom-style  and  border-bottom-color.
          border-bottom: 4px dotted red;
        
The order is important:
- width
- style
- color
          border-bottom: 2px solid;
        
Only the color is optional. If you omit it, the color applied will be the color of the text.