codecamp

CSS3 hanging-punctuation 属性

实例

在 p 元素首行的开始边缘之外放置一个标点符号:

p
{
hanging-punctuation:first;
}

浏览器支持

IE Firefox Chrome Safari Opera

目前主流浏览器都不支持 hanging-punctuation 属性。

定义和用法

hanging-punctuation 属性规定把标点符号放在文本整行的开头还是结尾的行框之外。

默认值: none
继承性: yes
版本: CSS3
JavaScript 语法: object.style.hangingPunctuation="first"

语法

hanging-punctuation: none|first|last|allow-end|force-end;
描述
none 不在文本整行的开头还是结尾的行框之外放置标签符号。
first 标点附着在首行开始边缘之外。
last 标点附着在首行结尾边缘之外。
allow-end
force-end
CSS3 grid-rows 属性
CSS 高度(height) 属性
温馨提示
下载编程狮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; }