gpt4 book ai didi

css - css 是否可以在一行中添加粗体和斜体?

转载 作者:太空宇宙 更新时间:2023-11-03 20:50:34 24 4
gpt4 key购买 nike

目前我看到你可以这样做:

body{
font-weight:bold;
font-style:italic;
}

有什么办法可以...

body{
font: bold italic???
}

最佳答案

是的,通过 CSS shorthand font rule .

Formal syntax: [ [ <‘font-style’> || || <‘font-weight’> || <‘font-stretch’> ]? <‘font-size’> [ / <‘line-height’> ]? <‘font-family’> ] | caption | icon | menu | message-box | small-caption | status-bar

另请参阅:http://www.w3.org/TR/CSS2/fonts.html#font-shorthand

一些例子:

p { font: 12px/14px sans-serif }
p { font: 80% sans-serif }
p { font: x-large/110% "New Century Schoolbook", serif }
p { font: bold italic large Palatino, serif }
p { font: normal small-caps 120%/120% fantasy }

关于css - css 是否可以在一行中添加粗体和斜体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16448576/

24 4 0
文章推荐: c# - RX : How to bind an IObservable to a property (ReactiveUI)
文章推荐: jquery - 删除类 Jquery