One css declaration for all css font properties

前端 未结 3 1445
孤独总比滥情好
孤独总比滥情好 2021-02-04 09:40

What is the proper syntax for putting all css font properties into one value.

body {font: 12px, arial, red}

Something like that but with all th

3条回答
  •  爱一瞬间的悲伤
    2021-02-04 09:59

    body{
        font: bold italic 15px/20px arial,sans-serif;
        color: red;
    }
    

    http://www.w3schools.com/css/tryit.asp?filename=trycss_font

    you can't include the color as part of the declaration. 15px/20px = font-size/line-height alt text

    nice link, maegar!

提交回复
热议问题