We shouldn’t be use old techniques when there’s a new age coming. New age includes the use of CSS3. OK! I will show some tutorials for CSS3. kızlık zarı masaj salonu You can learn easily with CSS3. You can learn following in this tutorials psikolog domain sorgula alan adı sorgulama
plaka sorgulama . Box shadow, Text shadow, Rounded corners, multiple backgrounds and Columns.
Box Shadow CSS3
Code:
.box {
box-shadow: 5px 5px 2px black;
-moz-box-shadow: 5px 5px 2px black;
-webkit-box-shadow: 5px 5px 2px black;
}Text shadow CSS3
Code:
.font {
font-size: 20px;
color: #2178d9;
}
.font {
text-shadow: 0 1px 0 #000;
}Rounded Corners CSS3
Code:
.box {
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}Multiple Backgrounds CSS3
Code:
.box {
width: 200px;
height: 150px;
background: url(images/text.png) center center no-repeat, url(images/bg.png) repeat-x;
}Columns CSS3
Code:
.columns {
-moz-column-count: 2;
-webkit-column-count: 2;
}