?
This document uses PHP Chinese website manual Release
quotes:none | [<string> <string>]+
默認(rèn)值:none
適用于:所有元素,::before, ::after, ::alternate, ::marker, ::line-marker, margin areas, @footnote areas, and @page context
繼承性:有
動(dòng)畫性:否
計(jì)算值:指定值
none:content屬性的open-quote和close-quote值將不會(huì)生成任何標(biāo)記
<string>:定義content屬性的open-quote和close-quote值的標(biāo)記,2個(gè)為一組
對(duì)應(yīng)的腳本特性為quotes。
Values | IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|---|
Basic Support | 6.0-7.0 | 2.0+ | 4.0+ | 6.0+ | 15.0+ | 6.0+ | 2.1+ | 18.0+ |
8.0+ |
<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>quotes_CSS參考手冊(cè)_web前端開發(fā)參考手冊(cè)系列</title> <meta name="author" content="Joy Du(飄零霧雨), dooyoe@gmail.com, www.doyoe.com" /> <style> q:lang(en){quotes:'[' ']' "<" ">";} q:lang(zh-cmn-Hans){quotes:"?" "?" '"' '"';} </style> </head> <body> <p lang="en"><q>Quote me <q>Quote me</q> Quote me!</q></p> <p lang="zh-cmn-Hans"><q>Quote me <q>Quote me</q> Quote me!</q></p> </body> </html>
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例