English 中文(简体)
互联网探索者不工作的超文本表格 7
原标题:HTML tables not working in Internet Explorer 7

我有一张超文本表格,其中我:

  1. Include explicit table width.
  2. Include explicit width on the first <td> row.
  3. I have images in the columns but I include height and width tags on the images so the browser should know in advance the sizing.
  4. 使用

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     <html xmlns="http://www.w3.org/1999/xhtml">
    

这在互联网探索者第8号、第2号、第4号、第4号、第3号、第3号、第4号、第3号、第4号、第4号、第3号、第4号、第3号、第3号、第4号、第3号、第3号、第3号、第3号、第4条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第5条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条、第3条

互联网探索者7未遵循一栏所具体规定的col宽度,但显示其面积与他人相同。

我失踪了什么?

The following is some of the table HMTL and CSS:

CSS

 #mainApplicationsTable
 {
    table-layout:fixed;
 }

传真:

<table border= 0  class= altTable  width= 320px  id= mainApplicationsTable >
<thead>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
</tr>
</thead>
<tbody>
<tr class= odd  recnum= 51 >
  <td width= 190px ><div class= appDetailsClic k id= 51  >2</div></td>
  <td width= 30px ><img width= 16px  height= 16px  title=  a  border= 0   src="../../images/image.png"></td> 
  <td width= 30px ><img width= 16px  height= 16px  title=  Server  border= 0  src="../../images/2.png"></td>
  <td width= 30px ><img width= 16px  height= 16px  title=  Server  border= 0  src="../../images/2.png"></td>
  </tr>
 </tbody>
    </table>
最佳回答

你的头几句话中就包括了明确的 w。 第1行实际上是包含<代码><th>内容的一行。 固定布局算法给他们同样的宽度。 在前线将 w号声明转至该行或某些<代码><col>要素。

你们还会遇到麻烦,因为那儿的毛病不会增加320个。 顺便说一句,width=“320px”是无效的;在超文本测量中没有任何单位,只有CSS。 无论是使用<代码>width="320",还是从风格使用width: 320px;。 图像宽度/散射也是如此。

问题回答

暂无回答




相关问题
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!

热门标签