Демонстрация определения функций
by webref
HTML
<script src="https://s.codepen.io/assets/libs/modernizr.js"></script>
<button>Привет</button>
CSS
body {
font: 14px/24px "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif;
}
button {
border: 0;
color: #fff;
cursor: pointer;
font-size: 14px;
font-weight: 600;
margin: 0;
outline: 0;
}
/* With CSS Gradient Styles */
.cssgradients button {
border: 1px solid #0080c2;
background: linear-gradient(#00a2f5, #0087cc);
border-radius: 6px;
padding: 15px 30px;
}
.cssgradients button:hover {
background: linear-gradient(#1ab1ff, #009beb);
}
.cssgradients button:active {
box-shadow: inset 0 1px 10px rgba(255, 255, 255, .5);
}
/* Without CSS Gradient Styles */
.no-cssgradients button {
background: transparent url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/29841/no-cssgradients-btn.png") 0 0 no-repeat;
padding: 16px 31px;
}
.no-cssgradients button:hover {
background-position: 0 -49px;
}
.no-cssgradients button:active {
background-position: 0 -98px;
}