A filetype responsible for creating the frontend visual elements and styles for a Webapp
Tools
Ids
These are specific rules for specific HTML Tags or tags with specific ids.
body {
width : 100%
}
div[type=submit] {
background-color: #4C4C4C;
}
Classes
Rulesets to apply to any object that has a class
<div class="class1"> </div>
.class1{
border : 2px;
margin : 9px;
background-color: #4C4C4C;
text-align : center;
}
Rules
color
color : white;
margin
margin : 8px
font
font-size
background-color
background-color: #4C4C4C;
border
border : 2px
width
width : 100%