Inital commit of mycss.css.

Created a column and row
This commit is contained in:
Russell R. 2020-07-28 15:25:24 +00:00
parent 1a37ea2761
commit fde96ef75e
1 changed files with 18 additions and 0 deletions

18
mycss.css Normal file
View File

@ -0,0 +1,18 @@
* {
box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 30%;
padding: 10px;
height: 300px; /* Should be removed. Only for demonstration */
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}