-
-
Save creyn/26d5c0a9a968885a624d5d224d4badaa to your computer and use it in GitHub Desktop.
Droga Programisty : Szybkie Palce : CSS selektor ID
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#dziennikZdarzen { | |
/* pozycja elementu wzgledem elementu nadrzednego */ | |
position: absolute; | |
/* odleglosc elementu do dolnej krawedzi strony */ | |
bottom: 10px; | |
/* odleglosc elementu od lewej krawedzi strony */ | |
left: 10px; | |
/* ramka elementu, nie chcemy jej wiec dajemy zero */ | |
border: 0px; | |
/* czy pokazac 'uchwyt' do powiekszania elementu przez uzytkownika */ | |
resize: none; | |
/* czy pokazac scroll po prawej jesli tekst bedzie zbyt dlugi */ | |
overflow:hidden; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<textarea id="dziennikZdarzen" ...></textarea> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment