You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
394 B
35 lines
394 B
3 months ago
|
/* CSS styles for my float demo page */
|
||
|
|
||
|
section {
|
||
|
width: 1000px;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
background: red;
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
background: lime;
|
||
|
width: 300px;
|
||
|
height: 600px;
|
||
|
float: left;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
.main-content {
|
||
|
background: yellow;
|
||
|
width: 700px;
|
||
|
height: 600px;
|
||
|
float: left;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
background: orange;
|
||
|
}
|
||
|
|
||
|
.clearfix1::after {
|
||
|
content: "";
|
||
|
display: table;
|
||
|
clear: both;
|
||
|
}
|