這篇文章將詳細介紹css中font的縮寫,有興趣的朋友參考一下。
實例程式碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <style> .login_top{height:26px;font:bold 14px/26px "宋体"; border:1px solid #000} .login_top2{height:26px; line-height:26px; font-weight:bold;font-size:14px;border:1px solid #000; font-family:'宋体'} </style> <div class="login_top">我垂直不居中</div> <br/ > <div class="login_top2">我垂直居中</div>
總結:
1、簡寫時,font- size和line-height只能透過斜線/組成一個值,不能分開寫。
2、順序不能改變.這種簡寫方法只有在同時指定font-size和font-family屬性時才起作用。而且,如果你沒有設定font-weight, font-style, 以及font-varient ,他們會使用預設值
##相關推薦:
#
以上是css中font的縮寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!