一个div实现白眼效果

Posted xzqyun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个div实现白眼效果相关的知识,希望对你有一定的参考价值。

巧妙利用border和background-clip

 

 

		<div class="eye"></div>

		.eye{
		  width:150px;
		  height:150px;
		  padding:10px;
		  border:10px solid;
		  border-radius:50%;
		  background-color: currentcolor;
		  background-clip: content-box;
		}
		

以上是关于一个div实现白眼效果的主要内容,如果未能解决你的问题,请参考以下文章