如何在 HTML 中使用内部 CSS(样式表)?
层叠样式表用于设置网页的显示样式。
CSS 用于设置和布局网页的样式,可以通过使用 CSS 属性来控制网页的显示样式,例如更改内容的字体、颜色、大小和间距,将其拆分为多个列,或添加动画及其他装饰元素。
内部 CSS
内部 CSS 用于在样式标签中定义单个 HTML 页面。它在 HTML 页面的 <head> 标签内、<style> 标签元素中进行定义。
示例
以下示例程序在 HTML 中使用内部 CSS 进行样式设置。
<!DOCTYPE html> <html> <head> <style> body {background-color:tan;} h1 {color: whitesmoke; font-family: cursive} p {color:whitesmoke; background-color: dimgrey; font-family: monospace} </style> </head> <body> <h1>HTML-HyperText Markup Language </h1> <p>The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser.</p> </body> </html>
示例
以下示例程序在 HTML 中使用内部 CSS 对 <ol> 元素进行样式设置。
<!DOCTYPE html> <html> <head> <style> ol.a { list-style-type: upper-roman; } </style> </head> <body> <h2>List</h2> <ol class = "a" > <li>GOT</li> <li>HOTD</li> <li>HBO</li> </ol> </body> </html>
示例
以下示例程序在 HTML 中使用内部 CSS 对 <table> 元素进行样式设置。
<!DOCTYPE html> <html> <head> <title>Inline CSS</title> <style> table, th, td { border: 3px solid; } </style> </head> <body> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>SS</td> <td>Rajamouli</td> </tr> <tr> <td>Prashant</td> <td>Neel</td> </tr> </table> </body> </html>
广告