10 lines
153 B
CSS
10 lines
153 B
CSS
|
.container {
|
||
|
height: 70vh;
|
||
|
overflow: auto;
|
||
|
display: flex;
|
||
|
flex-direction: column-reverse;
|
||
|
}
|
||
|
|
||
|
.line {
|
||
|
border-bottom: 1px solid #000;
|
||
|
}
|