CSS樣式可以讓我們美化網頁,使其看起來更加美觀干凈。下面是一些常用的CSS樣式:
/* 文本樣式 */ p { font-size: 16px; font-weight: bold; color: #333; text-align: center; } /* 鏈接樣式 */ a { color: blue; text-decoration: none; } a:hover { text-decoration: underline; } /* 背景樣式 */ body { background-color: #fff; } /* 邊框樣式 */ div { border: 1px solid #ccc; border-radius: 5px; } /* 圖片樣式 */ img { max-width: 100%; height: auto; } /* 列表樣式 */ ul { list-style: none; } li::before { content: "?"; margin-right: 5px; } /* 表格樣式 */ table { border-collapse: collapse; } th, td { border: 1px solid #ccc; padding: 5px; text-align: center; }
以上是一些常用的CSS樣式,可以根據需要進行調整和修改。使用HTML和CSS時,我們應注意樣式的合理性和一致性,以達到更好的視覺效果。