HTML是網頁中非常重要的一個語言,而CSS樣式則是美化網頁的關鍵之一。以下是一些CSS樣式大全,供你參考和使用:
//改變文本樣式 p { font-family: Arial, sans-serif; font-size: 18px; color: #333; line-height: 1.5; text-align: justify; } //改變背景樣式 body { background-color: #eee; background-image: url("bg.jpg"); background-position: center top; background-repeat: no-repeat; } //改變邊框樣式 div { border: 1px solid #ccc; border-radius: 10px; } //改變動畫效果 img:hover { transform: scale(1.2); transition: all 0.3s ease; } //改變排版樣式 ul { list-style-type: none; margin: 0; padding: 0; } //改變表格樣式 table { border-collapse: collapse; } td, th { border: 1px solid #ccc; padding: 5px; } //改變按鈕樣式 button { background-color: #007bff; color: #fff; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; } //改變鏈接樣式 a { color: #007bff; text-decoration: none; } a:hover { color: #0056b3; text-decoration: underline; }
以上樣式只是冰山一角,如需更多樣式請參考相關文檔或使用在線樣式工具,選出合適的樣式來美化你的網頁。
上一篇html登錄的css代碼
下一篇html用css怎么居中