Responsive webdesign has become a catch-all term for making your website work well at low resolutions.
Smartphones revolutionized the mobile web, and tablets are throwing another wrench into the gears with their growing popularity. With all things considered, a website today could be experienced on a low resolution smartphone, a medium resolution tablet, or a high resolution desktop or...
Tuesday, 27 May 2014
Monday, 26 May 2014
:before and :after background-image button with mouse over effect
Add below cod in HTML....
<p class="btn" > <a class="btn1"href="#">btn</a></p>
.btn1
{
background: url("../images/cen.png") repeat-x;
padding:10px 6px 20px 6px;
}
.btn:before {
background: url("../images/ltr.png") no-repeat;
padding: 10px 6px 20px 6px;
content: " ";
}
.btn:after {
background:...