Jump to content
php.lv forumi

Recommended Posts

Posted

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?

Posted (edited)

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
Posted

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>

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