Answer the question
In order to leave comments, you need to log in
Chromium != Chrome
I checked my layout in different browsers and it turned out that the results in Chrome (21.0.1180.89m Windows 7) and Chromium (20.0.1132.47 Ubuntu 12.04 (144678)) are different:
Chrome
Chromium
<!DOCTYPE html>
<html>
<head>
<title>HabraTest</title>
<link href="/st/bootstrap/css/bootstrap.css" rel="stylesheet">
</head>
<body>
<table class="table table-hover row span4">
<thead>
<tr>
<th>User Name</th>
<th>counting</th>
<th>results</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody id="tbody">
<tr><td>1</td><td>1</td><td>1</td><td>1</td><td>1</td><td>1</td></tr>
<tr><td>1</td><td>1</td><td>1</td><td>1</td><td>1</td><td>1</td></tr>
<tr><td>1</td><td>1</td><td>1</td><td>1</td><td>1</td><td>1</td></tr>
</tbody>
</table>
</body>
</html>
Answer the question
In order to leave comments, you need to log in
1) Why do you need row? row is the container class for span*. span* - adds a float, thus knocking the element out of the flow. Open the debugger and see what's wrong.
And as for the differences - Firefox on Windows != Firefox on Linux, let alone different (be that as it may) browsers.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question