body{
font-family:Arial;
}

.boja{
color:lightblue;
}

.internal{
color:burlywood;
}

.external{
color:beige;
}

.selektor{
color:wheat;
}

#jedan{
color:tomato;
}

.klasa{
background:lightgray;
}

div p{
color:palegreen;
}

a:hover{
color:orange;
}

.lista{
list-style-type:square;
}

.float{
float:left;
width:100px;
height:50px;
background:coral;
}

.clear{
clear:both;
background:yellow;
}

.box{
width:100px;
padding:20px;
border:5px solid black;
margin:20px;
background:lightgreen;
}

.overflow{
width:150px;
height:40px;
border:1px solid black;
overflow:auto;
}

.hidden{
visibility:hidden;
}

.none{
display:none;
}

.prioritet{
color:blue !important;
}

.margin{
margin:20px;
background:lightcoral;
}

.padding{
padding:20px;
background:lightcyan;
}

.sizing{
box-sizing:border-box;
width:200px;
padding:20px;
border:10px solid black;
background:lightgray;
}