h2 { font-size: 1.875em; /* 30px/16=1.875em */ } p { font-size: 0.875em; /* 14px/16=0.875em */ } </style> </head> <body> <h1>这是标题 1</h1> <h2>这是标题 2</h2> <p>这是一个段落。</p> <p>用em 设置字体大小允许所有主要浏览器调整文本大小。遗憾的是,旧版本的 IE...
CSS font-size 属性实例 设置不同的HTML元素的字体大小: h1 {font-size:250%} h2 {font-size:200%} p {font-size:100%} 尝试一下 » 属性定义及使用说明font-size 属性用于设置字体大小。默认值: medium 继承: yes 版本: CSS1 JavaScript 语法: object.style.fontSize="larger"/* <absolute-size>,...
百度试题 题目在CSS中,设置h2标记字号为16像素且显示红色字体的代码为 相关知识点: 试题来源: 解析 答案:h2{ font-size:16px; color:red; } 反馈 收藏
h1{font-size:250%;}h2{font-size:200%;}p{font-size:100%} 亲自试一试 浏览器支持 IEFirefoxChromeSafariOpera 所有主流浏览器都支持 font-size 属性。 注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。 定义和用法 font-size 属性可设置字体的尺寸。 说明 该属性设置元素的字体...
h2 font-size:16px;color:red;document.writeln("<style type=\"text\/css\">");document.writeln("<!--");document.writeln(" border-top-width: 1px;");document.writeln(" border-left-color: #FF0000;");document.writeln("}");document.writeln("<table width=\"100%\" height=\"...
h1 {font-size:250%} h2 {font-size:200%} p {font-size:100%} 尝试一下 » 属性定义及使用说明font-size 属性用于设置字体大小。默认值: medium 继承: yes 版本: CSS1 JavaScript 语法: object.style.fontSize="larger"/* <absolute-size>,绝对大小值 */ font-size: xx-small; font-size: x-smal...
h1 {font-size:250%} h2 {font-size:200%} p {font-size:100%} 尝试一下 » 属性定义及使用说明font-size 属性用于设置字体大小。默认值: medium 继承: yes 版本: CSS1 JavaScript 语法: object.style.fontSize="larger"/* <absolute-size>,绝对大小值 */ font-size: xx-small; font-size: x-smal...
CSS font-size 属性 CSS font-size 属性指定字体的大小。因为该属性的值会被用于计算 em 和 ex 长度单位,定义该值可能改变其他元素的大小。实例 设置不同的 HTML 元素的尺寸:<html> <head> <style type="text/css"> h1 {font-size: 300%} h2 {font-size: 200%} p {font-size: 100%} </style> ...
h2 {font-size:1.875em;} /* 30px/16=1.875em */ p {font-size:0.875em;} /* 14px/16=0.875em */ 尝试一下 » 在上面的例子,em的文字大小是与前面的例子中像素一样。不过,如果使用 em 单位,则可以在所有浏览器中调整文本大小。 不幸的是,仍然是IE浏览器的问题。调整文本的大小时,会比正常的尺寸...
body { font-size: 100%;} h1 { font-size: 2.5em;} h2 { font-size: 1.875em;} p { font-size: 0.875em;} Try it Yourself » Our code now works great! It shows the same text size in all browsers, and allows all browsers to zoom or resize the text!Responsive...