Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Cláudia Silva
0
Views
3
Comments
Cell renderization IE vs Firefox
Question
I have a table with some cells that contain div limited information, in IE, since the cells don't have any information, the renderization doesn't occur, but in Firefox the cells appear. Is there some way of manage cells visibility with javascript? Can't find a way to call a specific cell and then hide it.
Leonardo Fernandes
MVP
Hi Claudia.
There's a CSS rule which controls whether empty cells are rendered or not. Try putting this rule on your stylesheet:
table { empty-cells:show; }
More information:
https://www.w3.org/TR/CSS21/tables.html#empty-cells
2 replies
Last reply 14 Aug 2007
Show thread
Hide thread
Cláudia Silva
Hi Leonardo,
Thanks for the help, using your suggestion, the cells aren't renderized anymore, but the space is still there, any suggestion?
Leonardo Fernandes
MVP
Hi.
I'm sorry, I thought you wanted to show the empty cells. You should try this rule instead:
table { empty-cells: hide; }
In case that fails, you can use the "display:none" style in the cells you want to hide.
Hope this helps.
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...