📜  HTML |属性(1)

📅  最后修改于: 2023-12-03 15:31:15.939000             🧑  作者: Mango

HTML 属性

在 HTML 中,属性是指定 HTML 元素的特性。属性通常在 HTML 元素的开始标签内指定。

属性的格式是 属性名="属性值",例如:

<a href="https://www.example.com">Example</a>

这里的 href 是属性名,https://www.example.com 是属性值。

常见的 HTML 属性包括:

id

id 属性定义 HTML 元素的唯一标识符(ID)。

<h1 id="main-heading">Main Heading</h1>
class

class 属性定义 HTML 元素的类名。一个元素可以有多个类名,用空格分隔。

<p class="important info">This paragraph has multiple classes.</p>
style

style 属性定义 HTML 元素的样式。样式可以通过 CSS 属性来设置。

<div style="color: red; font-size: 24px;">This div is styled with inline CSS.</div>
src

src 属性定义用于在页面中嵌入的外部资源的路径。对于 <img><script> 元素,它指定资源的 URL。对于其它元素,它指定要嵌入的内容的 URL。

<img src="https://www.example.com/image.jpg" alt="A beautiful image">
alt

alt 属性定义当外部资源无法加载时显示的替代文本。

<img src="https://www.example.com/image.jpg" alt="A beautiful image">
href

href 属性定义链接的目标 URL。

<a href="https://www.example.com">Example website</a>

以上是几个常见的 HTML 属性,但实际上还有很多其它属性供使用。了解和掌握 HTML 属性可以让开发更加高效,让页面更加美观和易用。