border-image用法详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了border-image用法详解相关的知识,希望对你有一定的参考价值。


图像边框 border-image
使用方法:border-image:url(‘图像路径‘) 边距(不能带单位)/宽度 上下方式 左右方式;(四个边距,上右下左,相同时可缩写为一个)
repeat平铺 stretch拉伸  round

<style type="text/css">
		

		.div1{
			display: inline-block;
			margin-right: 30px;
			background: #000;
			width: 389px;
			height: 389px;
			border-style: solid;
			border-width: 100px;  /*设置边框宽度之前要先设置边框样式,不然不会显示的,这是在content外添加空间*/
			border-image:url("images/3.jpg") 100 repeat;
		}
		.div2{
			display: inline-block;
			background: darkred;
			width: 389px;
			height: 389px;
			/*直接在border-image中设置border宽度,这样实际上是占用了content的区域空间*/
			border-image:url("images/3.jpg") 100/100px repeat;
		}


	</style>
</head>
<body>
<div class="div1">CSS3新增的background-clip属性</div>
<div class="div2">CSS3新增的background-clip属性</div>
</body>

 




以上是关于border-image用法详解的主要内容,如果未能解决你的问题,请参考以下文章

CSS3中 border-image 的基本用法

border-image

c_cpp 加载源图像固定用法(代码片段,不全)

CSS难题:background-image和border-image同时使用时,background-image会被border-image盖住,怎么解决

SQL Select 语句的用法

(转) Java中的负数及基本类型的转型详解