Eccovi dieci regole CSS che ogni web designer dovrebbe conoscere
@media
1
2
3
@media screen and (max-width: 960px) {
...
}
Background-size
1
2
3
4
body {
background: url(image.jpg) no-repeat;
background-size: 100%;
}
@font-face
1
2
3
4
@font-face {
font-family: Blackout;
src: url("assests/blackout.ttf") format("truetype");
}
margin 0 auto;
1
2
3
#container {
margin: 0 auto;
}
Overflow:hidden
1
2
3
.container {
overflow: hidden;
}
.clearfix
1
2
3
4
5
6
7
8
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
Color: rgba();
1
2
3
.btn {
color: rgba(0,0,0,0.5);
}
Input [type:”text”]
1
2
3
input[type="text"] {
width: 200px;
}
Trasform: rotate(30deg)
1
2
3
.title {
transform: rotate(30deg);
}
outline:none;
1
2
3
A {
outline:none;
}
-
Previous
Come creare i Wireframes di un sito con Photoshop CS6 -
Next
Ottimizzare un sito per l’iphone quando lo si aggiunge alla home