通过指定元素的名称,获取元素的对象。
p { color: orange; <!-- p 元素为 橙色 --> } strong { color: red; <!-- strong 元素为 红色 --> } <p>简明教程</p> <strong>简明教程</strong>
显示效果
简明教程