html - Why is the button on my form ignoring the font size attribute? -
i have following form (described html , css stylesheet) - http://jsfiddle.net/y9z45/1/
there sign button @ bottom font size want increase.
here relevant css
.pricing-table .sign-up{ float: left; padding: 8px 0 12px; font-size: 60 px; text-decoration: none; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; } .pricing-table .sign-up a{ padding: 10px 40px 11px; display: inline-block; font-size: 60 px; font-weight:1000; text-decoration: none; color: #fff; border-radius: 5px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; background: #888888; -o-transition: background .3s linear; -moz-transition: background .3s linear; -webkit-transition: background .3s linear; transition: background .3s linear; } from can see, font remains @ fixed size regardless of use in css stylesheet. can explain i'm doing wrong?
font-size: 60px; or
font-size: 60px !important;
Comments
Post a Comment