css - How to make a square button -


i have button on website , want make square:

how make square button , make still act button changes little bit when scroll on it

here example: note button can't clicked on

http://jsfiddle.net/hruwm/

(what css make work?) here tried:

<input class="butt" type="button" value="test"/> .butt{ border: 1px outset blue;  background-color: lightblue;} 

this work:

.butt {    border: 1px outset blue;    background-color: lightblue;    height:50px;    width:50px;    cursor:pointer; }  .butt:hover {    background-color: blue;    color:white; } 

http://jsfiddle.net/j8zwc/


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -