같은 테이블을 표시하지 않습니다는 :없는 Doctype 또는 패딩 - 크롬 내 문제는 내가 여기 발견 한 문제와 비슷 FF, IE, 오페라
chrome vs FF/IE/Opera in calculating table cell width ? (table-layout:fixed)
나는 페이지를 단순화. 페이지에는 모든 브라우저에서 동일하지만 Chrome처럼 보이는 표가 포함되어 있습니다. 나는이 문제를 해결하는 방법을 모르거나 doctype (Doctype에 대해 너무 많이 알지 못함) 문제를 믿는다. 다른 브라우저에서와 같은 방식으로 Chrome보기를 만들도록 도와주세요. 고맙습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head>
<title>Looks different in Chrome vs FF, IE, Opera</title>
<style>
table.maintable {
background-color:yellow;
border: 1px solid red;
border-spacing:0;
border-collapse:collapse;
table-layout:fixed;
word-wrap:break-word;
}
table.maintable th, table.maintable td {
border: 1px solid red;
margin:0;
padding:14px;
}
</style>
</head>
<body>
I want the date look like 05/10/2011, in 1 string. Chrome cuts the date into 2 parts. All other browsers are OK. The problem is style <u>padding:14px;</u>, but we need some padding in cells. <br>
Also <b>table-layout:fixed;</b> and <b>word-wrap:break-word;</b> are needed because any long text without any spaces will not destroy the table size in this case. How to make Chrome look like any other browser?
<table class="maintable" style="width:510px;"><tbody>
<tr><th style="width:57px;">number number</th><th style="width:75px;">date</th><th>current info</th><th style="width:90px;">more</th></tr>
<tr><td><a href="http://google.com">40</a></td>
<td>05/10/2011</td>
<td><a href="http://google.com">2 lines in Crhome but 3 lines in other browsers. Also check the date.</a></td>
<td><a href="http://google.com">more...</a></td>
</tr>
</tbody>
</table>
</body></html>
당신이 내 첫 번째 문자열 (DOCTYPE 선언은) 잘못 생각하는 경우가, 나에게 적절한 하나를 제시해주십시오 : 다음은 내 HTML 페이지입니다. 키릴 어로 된 웹 사이트. xml이 사용되지 않습니다. 감사합니다.