You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Button border-bottom solid....

27 lines
606 B
HTML

<html>
<head>
<title>Button border-bottom solid</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style rel="stylesheet" type="text/css">
.button {
background-image: url(background.jpg) repeat-x bottom left #f8ccf4;
border-bottom: 1px solid #afd8d8;
border-left: 3px solid #af5;
border-right: 1px solid #cb5688;
border-top: 1px solid #f8f8f8;
color: #f5cc88;
font-weight: 23px;
margin: 0 0 15px;
padding: 6px 7px 8px 12px;
width: 200px;
}
</style>
</head>
<body>
<button class='button'>button</button>
</body>
</html>