codecamp

CSS3 text-outline 属性

CSS3 text-outline 属性

实例

设置text-outline(文本-轮廓):

p.test
{
text-outline: 2px 2px #ff0000;
}

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

任何主流浏览器都不支持text-outline属性。


属性定义及使用说明

text-outline属性指定文字大纲。

默认值: none
继承: yes
版本: CSS3
JavaScript 语法: object.style.textOutline="2px 2px #ff0000"


语法

text-outline: thickness blur color;
描述
thickness 必需。轮廓的粗细。
blur 可选。轮廓的模糊半径。
color 必需。轮廓的颜色。参阅 CSS 颜色值


CSS3 text-justify 属性
CSS3 text-overflow 属性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

CSS属性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }