電子書CSS樣式下載
現在隨著手機和平板電腦日漸普及,更多的人開始接觸和使用電子書,而適用于電子書的CSS樣式也變得越來越重要。
以下是一些可以用于電子書的CSS樣式,你可以免費下載并使用。
/* 通用樣式 */ body { line-height: 1.5; /* 設置行高 */ font-family: Arial, Verdana, sans-serif; /* 設置字體 */ } img { max-width: 100%; /* 圖片寬度不超過容器寬度 */ height: auto; /* 高度自適應 */ } p, ul, ol, dl, table { margin: 1em 0; /* 設置各元素的外邊距*/ } /* 標題樣式 */ h1, h2, h3, h4, h5, h6 { margin: 1em 0; font-weight: bold; /* 設置粗體 */ } h1 { font-size: 2.5em; /* 設置字體大小 */ } h2 { font-size: 2em; } h3 { font-size: 1.5em; } h4 { font-size: 1.2em; } h5 { font-size: 1.1em; } h6 { font-size: 1em; } /* 鏈接樣式 */ a { color: #337ab7; /* 設置鏈接顏色 */ text-decoration: none; /* 去除下劃線 */ } a:hover { color: #23527c; /* 設置鼠標懸浮時的顏色 */ text-decoration: underline; /* 添加下劃線 */ } /* 列表樣式 */ ul, ol { list-style: none; /* 去除默認的列表符號 */ } li { padding: 0.5em 0; /* 設置內邊距 */ } /* 表格樣式 */ table { width: 100%; /* 設置表格寬度為100% */ border-collapse: collapse; /* 合并表格邊框 */ } th, td { padding: 0.5em; /* 設置內邊距 */ border: 1px solid #ccc; /* 設置邊框 */ } th { background-color: #f5f5f5; /* 設置表頭背景顏色 */ text-align: center; /* 設置單元格居中 */ }
以上樣式適用于大多數電子書閱讀器和閱讀軟件,但不排除不同平臺的差異。如果需要針對特定平臺進行調整,請查閱該平臺的開發文檔。