HTML <basefont> size屬性用於指定文檔的默認font-size。 <basfront>標簽的face和color還有兩個屬性,它們指定文本的顏色和文本的font-family。 HTML 5不支持<basfront>標記。
用法:
<basefont size="number">
屬性值:它包含單個值編號,該編號指定文本文檔的font-size。它的默認值為3。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML basefont size Attribute
</title>
<basefont color="red" size="15"
face="courier, serif">
<style>
body {
text-align:center;
}
h1 {
font-weight:bold;
color:green;
}
h3 {
font-weight:bold;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>HTML <basefont> size Attribute </h3>
<p>A computer science portal for geeks</p>
<p>
<b>Note:</b> The basefont attribute
is not supported in html 5
</p>
</body>
</html>
輸出:
支持的瀏覽器:任何瀏覽器均不支持HTML <basefont >> size屬性。
相關用法
- HTML size屬性用法及代碼示例
- HTML <input> size屬性用法及代碼示例
- HTML <select> size屬性用法及代碼示例
- HTML <font> size屬性用法及代碼示例
- HTML HR size用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML value屬性用法及代碼示例
注:本文由純淨天空篩選整理自hritikbhatnagar2182大神的英文原創作品 HTML | <basefont> size Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。