Etudes/BTS/Web/Premiere annee/CSS4/style.css
2016-10-14 17:52:18 +02:00

28 lines
284 B
CSS

table, td{
border: 1px solid black;
}
table{
border-collapse: collapse;
}
th{
text-align: center;
}
td{
width: 100px;
}
.col1{
background-color: #33ccff
}
.col2{
background-color: #0033cc
}
td:hover{
font-weight: bold;
background-color: white;
}