Files
textual/sandbox/darren/just_a_box.css
darrenburns e94ea25faf Filling the gap between horizontal and vertical scrollbars (#664)
* Fill the spacing between the scrollbars

* Add "scrollbar-corner-color" CSS rule and doc

* Remove unused print statement

* Some sandbox changes

* Remove redundant words from docs

* Add docstring to ScrollBarCorner class
2022-08-16 10:55:34 +01:00

25 lines
272 B
CSS

Screen {
background: lightcoral;
}
#left_pane {
background: red;
width: 20;
overflow: scroll scroll;
}
#middle_pane {
background: green;
width: 140;
}
#right_pane {
background: blue;
width: 30;
}
.box {
height: 12;
width: 30;
}