如何使用 div 标签设置 HTML 元素的样式?
<div> 标签用作 HTML 元素的容器。借助此标签,我们可以轻松定义 HTML 文档的一部分。它还用于将 HTML 元素的大块内容组合在一起并轻松格式化它们。<div> 标签与块级元素一起使用。
<div> 标签接受所有 CSS 属性,并使用 class 和 id 等属性对其内部的元素进行样式设置。
语法
<div> 标签的语法如下。
<div class='division'>Content…</div>
示例 1
下面是一个在 HTML 中为 div 标签添加样式的示例。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .parent { border: 1rem solid green; margin: 1rem; padding: 1rem 1rem; text-align: center; box-shadow: 2px 2px 20px 23px aquamarine; } .division { display: inline-block; border: 1px solid aquamarine; padding: 1rem 1rem; background-color: #2ecc71; color: white; } </style> </head> <body> <div class='parent'> <div class='division'>div tag 1</div> <div class='division'>div tag 2</div> <div class='division'>div tag 3</div> </div> </body> </html>
以下是上述示例程序的输出。
我们可以为 <div> 标签添加更多样式。
示例 2
下面是另一个在 HTML 中为 div 标签添加样式的示例。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .parent { border: 1rem solid green; margin: 1rem; padding: 1rem 1rem; text-align: center; box-shadow: 2px 2px 20px 23px aquamarine; } .division { display: inline-block; border: 1px solid aquamarine; padding: 1rem 1rem; background-color: #2ecc71; color: white; text-transform: uppercase; text-decoration: underline; font-family: cursive; font-size: 1.2rem; font-weight: bolder; font-style: italic; } </style> </head> <body> <div class='parent'> <div class='division'>div tag 1</div> <div class='division'>div tag 2</div> <div class='division'>div tag 3</div> </div> </body> </html>
以下是上述示例程序的输出。
示例 3
您可以尝试运行以下代码,以使用 <div> 标签为 HTML 元素设置样式。添加的样式规则将应用于 id 为“content”的元素。此处 id 是 CSS 选择器。
<!DOCTYPE html> <html> <head> <style> #container p { line-height: 15px; margin: 20px; padding-bottom: 15px; text-align: justify; width: 130px; color: blue; } </style> <title>HTML div Tag</title> <link rel = "stylesheet" href = "style.css"> </head> <body> <div id = "container"> <p>Welcome to our website. We provide tutorials on various subjects.</p> </div> </body> </html>
广告