English 中文(简体)
使div并排出现
原标题:make divs appear side by side

我正在重组我的表格格式数据以显示在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的盒子模型问题以及widthpadding的使用。

但附带说明一下,如果您有真实的表格数据,则应该使用<;表>。不需要切换到<;div>





相关问题
CSS working only in Firefox

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....

image changed but appears the same in browser

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. ...

Firefox background image horizontal centering oddity

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 ...

Separator line in ASP.NET

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!