W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> /* 默认的 CSS 值 */ h4 { margin-top: 1.33em; margin-bottom: 1.33em; margin-left: 0; margin-right: 0; font-weight: bold; } </style> </head> <body> <p>默认情况下,h4 元素会这样显示:</p> <h4>This is heading 4</h4> <p>自定义的 h4 元素(更改 font-weight):</p> <h4 style="font-weight:normal;">This is heading 4</h4> </body> </html>