9 lines
240 B
HTML
9 lines
240 B
HTML
|
|
<!DOCTYPE html><style>
|
||
|
|
.btn {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.fixed-width {
|
||
|
|
width: 200px;
|
||
|
|
}
|
||
|
|
</style><button class="btn fixed-width">200px width</button><button class="btn">auto width should behave as fit-content</button>
|