1
Like I write inside a DIV using CSS. Below I have the CSS and in this same code I would like to write a sentence to appear in this DIV.
.gerenciar-coluna-exibicao-vismodelo{
position:relative;
height:60px;
width:250px;
float:left;
text-align:left;
line-height:70px;
border: 0px double #cccccc;
text-indent:25px;
background-color:#FF3F42;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
color:#1085A9;
}
Without that I need to go in the DIV TAG and write what I need.
You want to change the text content of div via css?
– RBoschini