/* синтаксис
border-bottom-width: значение | thin | medium | thick | inherit */
.block1 { /* толстая линия */
border-bottom-width: thick;
}
.block2 {
border-bottom-width: 2px;
}
.block3 { /* наследует значение от родителя */
border-bottom-width: inherit;
}