Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   HTML / DHTML (http://siteownersforums.com/forumdisplay.php?f=7)
-   -   3-D button using CSS (http://siteownersforums.com/showthread.php?t=59727)

davikerkrish 09-06-2012 04:22 AM

3-D button using CSS
 
Back in the early days of the web, 3-d buttons that appeared to become pushed in when moused over were all the rage. At that time, this could only be achieved through images and JavaScript, but now with the advent of CSS we can go all retro and re-create this effect:

a {
display: block;
border: 1px solid;
border-color: #aaa #000 #000 #aaa;
width: 8em;
background: #fc0;
}

a:hover
{
position: relative;
top: 1px;
left: 1px;
border-color: #000 #aaa #aaa #000;
}

jordenstive 09-20-2012 04:30 AM

I also want some information related this.thanks for nice post...

henryc10 10-25-2012 09:11 AM

wwwdot//tympanus.net/codrops/2012/01/11/css-buttons-with-pseudo-elements/

heres some more info

luciferdsouza 04-07-2013 10:09 PM

Good codes suggested, i used the normal buttons but never tried with 3D.
Gonna check out today itself, thanks to post here.

samhusten 04-08-2013 12:48 AM

I have tried this before. Thanks for giving such an innovative idea. Will surely try this.

vivekaryan 04-19-2013 03:54 AM

thanks...for this info...


All times are GMT -7. The time now is 12:32 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.