-
1. Data: 2009-07-20 09:03:56
Temat: Ficzer CSS?
Od: "lamer" <l...@p...pl>
Hej
Jest sobie styl CSS:
table td input[type=text]
{
text-align: center;
}
table td input
{
text-align: left;
}
Zarówno w Operze jak i w Firefoksie tekst w inputach typu text jest
wyśrodkowany. Dlaczego?
Oczywiście, jeśli wpiszę:
table td input[type=text]
{
text-align: center;
}
table td input[type=text]
{
text-align: left;
}
To tekst jest wyrównany do lewej.
lamer
-
2. Data: 2009-07-20 09:13:22
Temat: Re: Ficzer CSS?
Od: "Radek N." <n...@g...pl>
lamer pisze:
> Hej
> Jest sobie styl CSS:
>
> table td input[type=text]
> {
> text-align: center;
> }
>
> table td input
> {
> text-align: left;
> }
>
> Zarówno w Operze jak i w Firefoksie tekst w inputach typu text jest
> wyśrodkowany. Dlaczego?
> Oczywiście, jeśli wpiszę:
>
> table td input[type=text]
> {
> text-align: center;
> }
> table td input[type=text]
> {
> text-align: left;
> }
>
> To tekst jest wyrównany do lewej.
http://www.w3.org/TR/CSS21/selector.html
"...the selector EXAMPLE[notation=octal] is more specific than the type
selector alone..."
--
Radek N.
-
3. Data: 2009-07-20 11:20:59
Temat: Re: Ficzer CSS?
Od: "lamer" <l...@p...pl>
Użytkownik "Radek N." <n...@g...pl> napisał w wiadomości
news:h41cfi$8ac$1@inews.gazeta.pl...
> http://www.w3.org/TR/CSS21/selector.html
>
> "...the selector EXAMPLE[notation=octal] is more specific than the type
> selector alone..."
Ale to bez sensu jest ;/
lamer
-
4. Data: 2009-07-20 11:28:31
Temat: Re: Ficzer CSS?
Od: Gadjo Delhi <j...@g...com>
On 20 Lip, 13:20, "lamer" <l...@p...pl> wrote:
> > "...the selector EXAMPLE[notation=octal] is more specific than the type
> > selector alone..."
>
> Ale to bez sensu jest ;/
p.dupa { text-align: center; }
p { text-align: left; }
<p class="dupa">blablabla</p>
tu też byś chciał, żeby było wyrównane do lewej?
-
5. Data: 2009-07-20 11:34:13
Temat: Re: Ficzer CSS?
Od: "Radek N." <n...@g...pl>
lamer pisze:
> Użytkownik "Radek N." <n...@g...pl> napisał w wiadomości
> news:h41cfi$8ac$1@inews.gazeta.pl...
>
>> http://www.w3.org/TR/CSS21/selector.html
>>
>> "...the selector EXAMPLE[notation=octal] is more specific than the
>> type selector alone..."
>
> Ale to bez sensu jest ;/
Do not underestimate the power of the Dark Side ;)
http://www.stuffandnonsense.co.uk/archives/images/sp
ecificitywars-05v2.jpg
http://www.stuffandnonsense.co.uk/archives/css_speci
ficity_wars.html
--
Radek N.
-
6. Data: 2009-07-20 16:31:04
Temat: Re: Ficzer CSS?
Od: "lamer" <l...@p...pl>
Użytkownik "Gadjo Delhi" <j...@g...com> napisał
> Ale to bez sensu jest ;/
p.dupa { text-align: center; }
p { text-align: left; }
<p class="dupa">blablabla</p>
tu też byś chciał, żeby było wyrównane do lewej?
---------------------
W sumie może i racja. Sorry ;/
lamer