Jump to content
php.lv forumi

html


MārisL

Recommended Posts

Kādēļ man validatorā rakstīts, ka ine 43, Column 43: there is no attribute "cellpadding"., bet tiklīdz es izņemu no tabulas cellpadding tā weblapas izskats nobrūk...

Kas varētu būt par vainu?

Edited by MārisL
Link to comment
Share on other sites

NU tas old-skuul tas cellpadding, pareizi ir

 

.my_table td
{
  padding: 5px;
}

table class="my_table"
... <td>

 

un vispārm neraksti tos smukumus HTML-ā... pēc iespējas vairāk jāsabāž CSS-ā, jo tas ir kā krāsas bundža, kuru pēc tam uzklās uz dēļa (nav svarīgi no kāda koka un formas)

Edited by Delfins
Link to comment
Share on other sites

tāpat nekas nesanāk :S

 

Line 43, Column 31: there is no attribute "length". lenght arī .css failā ielkļaut? (ja jā, tad uzrakstiet lūdzu, kas tur jāraksta, jo ar .css pārāk ilgi neņemos)

Edited by MārisL
Link to comment
Share on other sites

Lai pateiktu kas par kļūdu, vajag zināt arī kontekstu:

<table class="my_table" length="936" border="0" cellpadding="0" cellspacing="0">

Table tagam tāda parametra nav. Nez ko tu domāji, kad to vispār ierakstīji.

 

To vajag pārveidot šādi

:: html ::
<table class="my_table">

::css::
table.my_table{
  width: 936px; /* ja tas ir tas ko tu biji domājis ar length*/
  border: 0;
  padding: 0;
  border-collapse: collapse;
}

Edited by mefisto
Link to comment
Share on other sites

php.jpg

 

Es tur neko neredzu :\

 

LABOTS: ā jā. Caur IE uzrādas kaut kas. Nevarētu tas būt tādēļ, ka fails ir seivots utf-8 kodējumā uz notepad? (Vakar kaut kur lasiju, ka seivojot caur notepad priekšā pieliekas 3 neredzami cipari)

 

 

 

UN ATKAL PIEVIENOTS: :) Kļūda labota. Noseivoju failu caur Notepad ++ ( uft-8 without BOM)

Edited by MārisL
Link to comment
Share on other sites

×
×
  • Create New...