我正在重组我的表格格式数据以显示在div中。当我分配一个css<code>显示:内联块,div在IE8中并排显示,但在IE6中,它向下显示。
请帮忙。
提前谢谢。
我正在重组我的表格格式数据以显示在div中。当我分配一个css<code>显示:内联块,div在IE8中并排显示,但在IE6中,它向下显示。
请帮忙。
提前谢谢。
要使显示:内联块
在IE6中工作,请使用以下命令:
selector {
display: inline-block;
*display: inline;
zoom: 1
}
为什么这样做?请参阅:内联块在internet explorer 7、6中不起作用
I am restructuring my tabular format data to show in divs.
我不得不同意其他评论——这是个坏主意。
您应该使用<;表>表格式数据的代码>——从语义上讲,这就是它们的用途!
您必须使用<code>display:block;float:left以在IE6中实现这一点。但是要注意IE6的盒子模型问题以及width
和padding
的使用。
但附带说明一下,如果您有真实的表格数据,则应该使用<;表>代码>。不需要切换到
<;div>代码>。
I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....
I have a div <div id="masterdiv"> which has several child <div>s. Example: <div id="masterdiv"> <div id="childdiv1" /> <div id="childdiv2" /> <div id="...
I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...
<form><input type="file" name="first" onchange="jsFunction(2);"> <input type="file" name="second" onchange="jsFunction(3);"</form> Possible to pass just numbers to the js ...
So I ve got a menu with a hover/selected state and it loads fine in IE6/IE7. However when I scroll down the page and put the element outside of the viewport and then back in I get a broken image! I ...
I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...
Is it possible to reload a form after file-input change? I have a form where the user can chose an image for upload. I also have a php script which displays that image resized. I only wonder if it ...
I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!