笔记CSS3 border

来源:互联网 发布:uefi启动ubuntu 编辑:程序博客网 时间:2024/05/16 16:02


border-shadow

box-shadow: 向右偏移PX 向下偏移px 模糊值px 色值;

<style> 
div{
width:300px;
height:100px;
background-color:#ff9900;
box-shadow: 0px 0px 5px #888888;
}
</style>


----------------------------------------------------------------------

border-image

border-image:url(图片地址) 角宽度 角宽度 类型;



<style> 
div
{
border:15px solid transparent;   /*设置边框宽度*/
width:300px;
padding:5px
}


#round
{
border-image:url(/i/border.png) 26 26 round;  /*边框平铺*/
}

#stretch
{
border-image:url(/i/border.png) 26 26 stretch;      /*边框拉伸*/
}
</style>



0 0