border-radius:允許向元素添加圓角 box-shadow:陰影 設置多層陰影 box-shadow:10px 10px 5px 5px gray,15px 15px 5px 5px blue,20px 20px 5px 5px gray;/* 多層陰影*/ border-image屬性用 ...
border-radius:允許向元素添加圓角
<style type="text/css"> #r1{ border-radius:25px; background:blue; padding:20px; width:200px; height:150px; } #r2{ border-radius:25px; border:2px solid green; padding:20px; width:200px; height:150px; } #r3{ border-radius:25px; background:url("img/1.jpg"); background-position:left top; background-repeat:repeat; padding:20px; width:200px; height:150px; } </style> </head> <body> <form action="" id="myform" > <p>border-radius </p> <p>指定背景顏色圓角</p> <p id="r1">圓角</p> <p>指定邊框元素圓角</p> <p id="r2">圓角</p> <p>指定背景圖片圓角</p> <p id="r3">圓角</p> </form> </body>
box-shadow:陰影
<style type="text/css"> #div1{ width:200px; height:100px; background:yellow; box-shadow:10px 10px 5px 5px gray;/* 陰影*/ } #div2{ width:200px; height:100px; background:yellow; box-shadow:10px 10px 5px 5px inset;/* 陰影 inset內陰影*/ } </style> </head> <body> <div id="div1"> 外陰影 </div> <div id="div2"> 內陰影 </div> </body>
設置多層陰影
box-shadow:10px 10px 5px 5px gray,15px 15px 5px 5px blue,20px 20px 5px 5px gray;/* 多層陰影*/
border-image屬性用於設置圖片邊框
<style type="text/css"> div{ width:250px; padding:10px 20px; border:15px solid transparent; } #round{ -webkit-border-image:url("img/1.jpg") 30 30 round; /* -webkit是google瀏覽器內核支持所需要 ,round是平鋪的意思*/ -o-border-image:url("img/1.jpg")30 30 round;/* -o是Opera瀏覽器內核支持所需要的首碼*/ border-image:url("img/1.jpg")30 30 round; } #stretch{ -webkit-border-image:url("img/1.jpg") 30 30 stretch; /* -webkit是google瀏覽器內核支持所需要 stretch是拉伸 */ -o-border-image:url("img/1.jpg")30 30 stretch;/* -o是Opera瀏覽器內核支持所需要的首碼*/ border-image:url("img/1.jpg")30 30 stretch; } </style> </head> <body> <p>border-image屬性用於設置圖片的邊框</p> <div id="round"> 這裡圖像平鋪來填充該區域 </div> <br> <div id="stretch"> 這裡圖片拉伸以填充該區域 </div> <p>這裡是我們使用的圖片素材</p> <img src="img/1.jpg">