Jump to content
php.lv forumi

Tabulas; Firefox vs Chrome


-=HELLBENDER=-

Recommended Posts

Ir tabula, kurai nevajadzētu būt balti borderi, bet tomēr uz firefox tie ir..

 

Chrome (Tā kā vajadzētu būt):

px64brouuszmdsgqjxc.png

 

 

Firefox:

lxusdy0ulzu4kdkhzw.png

 

 

Tabula;

<table style="border:0px solid #05463f;" border="2" bordercolor="#05463f" cellspacing="2" cellpadding="2" width="300">
<tr>
<td>Pilsētas informācija</td>
</tr>
</table>
<table style="border:0px solid #05463f;" border="2" bordercolor="#05463f" cellspacing="1" cellpadding="1" width="300">
<tr>
<td>Resursu ieguve</td>
<td>x122 / stundā</td>
</tr>
<tr>
<td>Koordinātes</td>
<td>1:1:27</td>
</tr>
</table>

 

 

 

Kas ugunslapsai nepatīk un kā to labot?

Link to comment
Share on other sites

Kāpēc divreiz darīt vienu un to pašu!? Izmanto saturīgāku css!

 

btw, to visu var iegrūst vienā tabulā, ja ir vēlme tās izmantot!

Edited by ezis
Link to comment
Share on other sites

formatē tabulas un šūnas ar css:

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Untitled 1</title>
<style>
table {border: none; width: 300px;}
td {border: 1px solid #05463f;}
.one td {margin: 2px; padding:  2px;}
.two td {margin: 1px; padding:  1px;}
</style>   
</head>

<body>
<table class="one">
<tr>
<td>Pilsētas informācija</td>
</tr>
</table>
<table class="two">
<tr>
<td>Resursu ieguve</td>
<td>x122 / stundā</td>
</tr>
<tr>
<td>Koordinātes</td>
<td>1:1:27</td>
</tr>
</table>
</body>
</html>

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...