1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| div span { font-size: 20px; font-weight: 800; }
div:nth-child(3) { margin: 20px 0; }
table { border-collapse: collapse; text-align: center; margin: 10px 0; }
input { border: none; border-bottom: 1px solid #000; }
thead tr>*, tbody tr>* { border: 1px solid #000; }
thead { background-color: blue; color: red; }
thead tr th { width: 10em; }
thead tr th:nth-child(2) { width: 500px; }
tbody tr { background-color: rgb(255, 166, 0); }
|