Good afternoon guys, next I have some text boxes that are being formatted via css I would like to know if it is possible to change the formatting of these boxes for images without having to change the formatting in the main html or script pages.
follow the code
.box-wrapper{
height: 500px;
width: 500px;
font-size: 50px;
text-align: center;
vertical-align: middle;
display: table-cell;
}
#pag-1{
background-color: yellow;
}
#pag-2{
background-color: limegreen;
/*display: none;*/
}
#pag-3{
background-color: blue;
/*display: none;*/
}
#pag-4{
background-color: red;
/*display: none;*/
}