📅  最后修改于: 2023-12-03 15:15:42.949000             🧑  作者: Mango
以下是
<hr color="color_name|hex_number|rgb_number">
其中,`color_name` 是指 CSS 中的颜色名;`hex_number` 是指十六进制颜色代码;`rgb_number` 是指 RGB 颜色值。
以下示例展示如何使用
<p>这是一些文本。</p>
<hr color="red">
<p>这是一些文本。</p>
<hr color="#0000ff">
<p>这是一些文本。</p>
<hr color="rgb(255,0,255)">
输出:
This is some text.
This is some text.
This is some text.
在设计网页时,使用颜色属性可以在页面中引入更多的颜色和视觉吸引力。