CSS(層疊樣式表)是前端開發(fā)中必不可少的技術(shù),能夠美化網(wǎng)頁并使其更加易于使用。常用CSS樣式集合如下:
/* 設(shè)置頁面背景顏色 */ body { background-color: #ffffff; } /* 設(shè)置頁面字體樣式 */ body { font-family: Arial, sans-serif; font-size: 16px; } /* 設(shè)置鏈接樣式 */ a { text-decoration: none; color: #0000ff; } /* 設(shè)置按鈕樣式 */ button, input[type="submit"], input[type="reset"] { background-color: #008000; color: #ffffff; border: none; padding: 10px; border-radius: 5px; cursor: pointer; } /* 設(shè)置圖片樣式 */ img { max-width: 100%; height: auto; } /* 設(shè)置表格樣式 */ table { border-collapse: collapse; width: 100%; } td, th { border: 1px solid #dddddd; text-align: left; padding: 8px; } /* 設(shè)置列表樣式 */ ul, ol { list-style-type: none; margin: 0; padding: 0; } li { margin-bottom: 10px; padding-left: 20px; position: relative; } li:before { content: ""; display: block; width: 10px; height: 10px; border-radius: 50%; background-color: #008000; position: absolute; top: 6px; left: 0; }
上一篇jquery val
下一篇jquery url