1. 程式人生 > >邊框的使用,border-radius,box-shadow,border-image

邊框的使用,border-radius,box-shadow,border-image

ext alt HA AR wid solid body -i text

<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: auto;
padding: 0;
}
#a1{
width: 100px;
height: 100px;
border: 1px solid red;
margin-top: 30px;
border-radius: 15px 20%;
box-shadow: 5px 10px;
}
技術分享圖片


</style>
</head>
<body>
<div id="a1">

</div>

</body>
</html>

邊框的使用,border-radius,box-shadow,border-image