Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

 
Reply to this topicStart new topic
> [HTML] You are encouraged to offer a generic famil
right6
post
Post #1





Grupa: Zablokowani
Postów: 206
Pomógł: 0
Dołączył: 9.03.2006

Ostrzeżenie: (0%)
-----


Kod
th
{
    height:13px;
    background-image:url('./bg_m_normal.png');
    font-size:10px;
    color:#FFFFFF;
    background-color: rgb(227,74,6);
    font-family:Verdana, Arial;
    font-weight:bold;
    text-align:center;
    vertical-align:middle;
    padding-top:2px;
}


i przy walidacji dostaje niwiedzie czemu

Kod
# Line : 209 font-family: You are encouraged to offer a generic family as a last alternative
# Line : 209 (Level : 2) font-family: You are encouraged to offer a generic family as a last alternative : th


i takich bledow dla innych definicji jeszcze z 6

(IMG:http://forum.php.pl/style_emoticons/default/ohmy.gif)
Go to the top of the page
+Quote Post
orson
post
Post #2





Grupa: Zarejestrowani
Postów: 548
Pomógł: 2
Dołączył: 19.07.2003

Ostrzeżenie: (0%)
-----


witam ...

ale tam gdzieś jest przecież link do wyjaśnienia problemu (IMG:http://forum.php.pl/style_emoticons/default/questionmark.gif) mimo że jest on całkiem jasny ... to nie jest błąd tylko informacja że powinno się załączyć ogólną rodzinę czcionek: serif, sans-serif, monospace itp
http://www.w3.org/TR/REC-CSS2/fonts.html#g...c-font-families

pozdrawiam
Go to the top of the page
+Quote Post
right6
post
Post #3





Grupa: Zablokowani
Postów: 206
Pomógł: 0
Dołączył: 9.03.2006

Ostrzeżenie: (0%)
-----


cos pomoglo (IMG:http://forum.php.pl/style_emoticons/default/winksmiley.jpg) dzieki

ale jest nexte probleme

Line : 171 (Level : 2) Redefinition of border-top-width : hr

Kod
hr
{
    height: 0px;
    border: solid #D1D7DC 0px;
    border-top-width: 1px;
}


no to zmieniam na

Kod
hr
{
    height: 0px;
    border: solid #D1D7DC 1px;
}


validacja OK, ale pod FF linia HR wyglada inaczej (IMG:http://forum.php.pl/style_emoticons/default/sad.gif)
Go to the top of the page
+Quote Post
orson
post
Post #4





Grupa: Zarejestrowani
Postów: 548
Pomógł: 2
Dołączył: 19.07.2003

Ostrzeżenie: (0%)
-----


witam

Kod
border: width style color


stary, musisz przejrzeć manual do css

pozdrawiam
Go to the top of the page
+Quote Post
maverickkk
post
Post #5





Grupa: Zarejestrowani
Postów: 181
Pomógł: 0
Dołączył: 12.11.2005

Ostrzeżenie: (0%)
-----


Jak piszesz 0 to nie musisz pisać jednostki

i tak jak napisał 'orson'ma być

Kod
hr
{
  height: 0px;
  border-top: 1px solid #D1D7DC;
}


Ten post edytował maverickkk 8.05.2006, 21:55:49
Go to the top of the page
+Quote Post
right6
post
Post #6





Grupa: Zablokowani
Postów: 206
Pomógł: 0
Dołączył: 9.03.2006

Ostrzeżenie: (0%)
-----


i juz ostatnia rzecz (IMG:http://forum.php.pl/style_emoticons/default/tongue.gif)

Kod
.ddmx
{
    font: 12px arial;
}
.ddmx .item1, .ddmx .item1-active
{
      background-image:url('./1/button_bg.png');
    padding: 4px 12px 4px 3px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #464646;
    text-decoration: none;
    background-color: inherit;
    white-space: nowrap;
    position: relative;
    display: inline;


}


* Line : 488 font-family: You are encouraged to offer a generic family as a last alternative
* Line : 489 (Level : 2) Redefinition of font-family : .ddmx

niby to co wyzej ale jak nie zrobie tak zle (IMG:http://forum.php.pl/style_emoticons/default/sadsmiley02.gif) jak dodam font-famili do .dmx to mi pisze ze podwujne definicje (IMG:http://forum.php.pl/style_emoticons/default/sad.gif)

dzieki
Go to the top of the page
+Quote Post
maverickkk
post
Post #7





Grupa: Zarejestrowani
Postów: 181
Pomógł: 0
Dołączył: 12.11.2005

Ostrzeżenie: (0%)
-----


Kod
.ddmx
{
   font: 12px arial, sans-serif;
}


(IMG:http://forum.php.pl/style_emoticons/default/guitar.gif)
Go to the top of the page
+Quote Post
right6
post
Post #8





Grupa: Zablokowani
Postów: 206
Pomógł: 0
Dołączył: 9.03.2006

Ostrzeżenie: (0%)
-----


ok

ale

Kod
hr
{
    height: 0px;
    border: solid #D1D7DC 0px;
    border-top-width: 1px;
}


dalej jest zle (znaczy w/w oczywiscie ze zle, ale nie idzie tego poprawic)

to co napisal orson pod FF wyglada jednak nieco inaczej niz mój kod.
Go to the top of the page
+Quote Post
orson
post
Post #9





Grupa: Zarejestrowani
Postów: 548
Pomógł: 2
Dołączył: 19.07.2003

Ostrzeżenie: (0%)
-----


witam

przecież wyraźnie napisałem w jakiej kolejności mają być podane atrybuty! kolejność nie jest dowolna ...

pozdrawiam
Go to the top of the page
+Quote Post
right6
post
Post #10





Grupa: Zablokowani
Postów: 206
Pomógł: 0
Dołączył: 9.03.2006

Ostrzeżenie: (0%)
-----


a ja napisalem wyraznie ze nie dziala (IMG:http://forum.php.pl/style_emoticons/default/winksmiley.jpg) (znaczy sie linia jest inna niz mój pierwotny kod)

Kod
hr
{
    height: 0px;
    border: 1px solid #D1D7DC;
}
Go to the top of the page
+Quote Post
orson
post
Post #11





Grupa: Zarejestrowani
Postów: 548
Pomógł: 2
Dołączył: 19.07.2003

Ostrzeżenie: (0%)
-----


witam ...

Kod
hr{
   height: 0px;
   border: 1px solid #D1D7DC;
   border-bottom: 1px;
}
#hr{
   height: 0px;
   border: solid #D1D7DC 0px;
   border-top-width: 1px;
}

u mnie wygląda tak samo ... teraz przypatrz się uważnie czym się różnią ...

pozdrawiam
Go to the top of the page
+Quote Post

Reply to this topicStart new topic
2 Użytkowników czyta ten temat (2 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 15.09.2025 - 04:11