forked from marquez.juan/clase-9-eventos
19 lines
209 B
CSS
19 lines
209 B
CSS
div {
|
|
background-color: #DAE889;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
}
|
|
|
|
.seleccionado {
|
|
background-color: yellow;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
.visible{
|
|
display: block;
|
|
}
|