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
(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; }
Comments
Post a Comment