使用 標籤在文件中新增一個部分。 HTML 標籤用於定義文件的一部分。使用 div 標籤,您可以將大部分 HTML 元素分組在一起,並使用 CSS 進行格式化。
您可以嘗試使用下列程式碼建立一個部分 -
<!DOCTYPE html> <html> <head> <title>HTML div Tag</title> <link rel = "stylesheet" href = "style2.css"> </head> <body> <div id = "contentinfo"> <p>Welcome to our website. We provide tutorials on various subjects.</p> </div> </body> </html>
以下是css檔案 style2.css
#contentinfo p { line-height: 20px; margin: 30px; padding-bottom: 20px; text-align: justify; width: 140px; color: red; }
以上是如何在HTML文件中建立一個章節?的詳細內容。更多資訊請關注PHP中文網其他相關文章!