0
Hail! I think it’s kind of a basic question, but come on. In one of the application views a table is mounted and in the rightmost column two elements are included to type span. To the last I included the attribute Hidden (Hidden="Hidden"). However the element is shown as can be seen in the following fiddle - http://jsfiddle.net/6fswhgd3/.
Obviously I don’t want to use the styling feature span as I did in the last row of the example table.
What can I do? Thank you for your attention. Paulo Ricardo Ferreira
There is no Hidden attribute. If you want to hide the
span
usecss
-display: none
– Pedro Camara Junior
@Pedrocamarajunior, according to the website w3schools there is the Hidden attribute. Thank you.
– Paulo Ricardo Ferreira
It actually exists in HTML5 Paul. I believe your problem is because the class of
bootstrap
-glyphicon
changes the display of the element toinline
as soon as css is loaded.– Pedro Camara Junior
@Pedrocamarajunior, in fact, the Glyphicon class changes the display to inline-block. Thank you.
– Paulo Ricardo Ferreira
Post an answer with the solution found, if other users have the same problem, they will know what was done to solve. :)
– Pedro Camara Junior
@Pedrocamarajunior, both answers below solve the problem.
– Paulo Ricardo Ferreira