admin管理员组文章数量:1339785
I have two tables that both have the same class and structure. I style the class with CSS and they look just like I want.
The problem is that if one of those tables starts off hidden and is later displayed using JavaScript the outline ive given it shrinks to wherever the text is that it surrounds.
this is the code used to display the table:
function setTable(){
if(document.getElementById("forfeitTable2").style.display=="none"){
document.getElementById("forfeitTable2").style.display="block";
}
else if(document.getElementById("forfeitTable2").style.display=="block"){
document.getElementById("forfeitTable2").style.display="none";
}
}
This demo can probly explain it better than I can:
/
- Why does this happen?
- What can I do to stop it?
I have two tables that both have the same class and structure. I style the class with CSS and they look just like I want.
The problem is that if one of those tables starts off hidden and is later displayed using JavaScript the outline ive given it shrinks to wherever the text is that it surrounds.
this is the code used to display the table:
function setTable(){
if(document.getElementById("forfeitTable2").style.display=="none"){
document.getElementById("forfeitTable2").style.display="block";
}
else if(document.getElementById("forfeitTable2").style.display=="block"){
document.getElementById("forfeitTable2").style.display="none";
}
}
This demo can probly explain it better than I can:
http://jsfiddle/DelightedD0D/6Ajyn/1/
- Why does this happen?
- What can I do to stop it?
5 Answers
Reset to default 4Use
document.getElementById("forfeitTable2").style.display="table";
instead of
document.getElementById("forfeitTable2").style.display="block";
JS Fiddle :- http://jsfiddle/6Ajyn/3/
can you try setting display to table instead of block!
if you set display to none, width:100% doesnt noe how to measure the width.
try this:
if(document.getElementById("forfeitTable2").style.display=="none"){
document.getElementById("forfeitTable2").style.display="block";
document.getElementById("forfeitTable2").style.width="100%";
}
else if(document.getElementById("forfeitTable2").style.display=="block"){
document.getElementById("forfeitTable2").style.display="none";
}
}
Just empty the css display
property instead of setting it as block
or table
like this:
if(document.getElementById("forfeitTable2").style.display=="none"){
document.getElementById("forfeitTable2").style.display="";
}
else if(document.getElementById("forfeitTable2").style.display==""){
document.getElementById("forfeitTable2").style.display="none";
}
DEMO
To see a full list of possible values for the display
property see
style display property
When you hide a table to show it again use
document.getElementById("tableId").style.display="table";
when you hide table row to show it again use
document.getElementById("rowId").style.display="table-row";
本文标签: javascriptWhy does styledisplayquotblockquot change the length of my tableStack Overflow
版权声明:本文标题:javascript - Why does .style.display="block" change the length of my table? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743588870a2506853.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论