如何用纯CSS实现文字描边效果?

html-css010

如何用纯CSS实现文字描边效果?,第1张

嗯,可以的。但是其实讲真这个效果不太常用呢,因为只支持Webkit

/* 宽度和颜色 */

-webkit-text-stroke: 4px navy

/* 默认 */

-webkit-text-stroke: inherit

-webkit-text-stroke: initial

-webkit-text-stroke: unset

即-webkit-text-stroke: <length><color>

<length>

文本描边宽.

<color>

文本颜色.

<body>

<div id="nav">

布局

</div>

</body>

CSS代码: #nav{border: solid #000000 3px} 黑色外边框,宽度为3px;

<html>

<head>

<title>css圆角效果--七度空间网页教学网</title>

<meta http-equiv="content-type" content="text/htmlcharset=gb2312">

<style type="text/css">

div.RoundedCorner{background: #9BD1FA}

b.rtop, b.rbottom{display:blockbackground: #FFF}

b.rtop b, b.rbottom b{display:blockheight: 1pxoverflow: hiddenbackground: #9BD1FA}

b.r1{margin: 0 5px}

b.r2{margin: 0 3px}

b.r3{margin: 0 2px}

b.rtop b.r4, b.rbottom b.r4{margin: 0 1pxheight: 2px}

</style>

</head>

<body>

<div class="RoundedCorner">

<b class="rtop"><b class="r1"></b><b class="r2"></b><b class="r3"></b><b class="r4"></b></b>

<br>无图片实现圆角框<br><br>

<b class="rbottom"><b class="r4"></b><b class="r3"></b><b class="r2"></b><b class="r1"></b></b>

</div>

</body>

</html>