Write inside a DIV using CSS

1

As I write within a DIV using CSS. Below I have 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 this, I need to go to the DIV Tag and write what I need.

    
asked by anonymous 13.01.2016 / 18:09

1 answer

1

Do so

.gerenciar-coluna-exibicao-vismodelo:before {
  content: "Boschini was here!";
}

But it would be recommended for you to do it for jquery.

    
13.01.2016 / 18:19