CSS tyylit ovat tänä päivänä tärkein työkalu html sivujen ulkoasun ja asettelun muokkaamiseen.
Tee itsellesi muistilista mielestäsi 20 tärkeimmästä CSS parametrista.
Otsikkon paikka
h1 {
text-align: center;}
h2 {
text-align: left;}
h3 {
text-align: right;
}
--------------------------------------
Värit
body {
color: blue;}
h1 {
color: green;}
-------------------------------------
Tekstin varjostus
h1 {
text-shadow: 3px 2px red;}
-------------------------------------
Reunat
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}
------------------------------------------------------------
Fontin muuttaminen
p {
font-family: "Times New Roman", Times, serif;}
---------------------------------------------------------------
Fontin tyyli
p.normal {
font-style: normal;}
p.italic {
font-style: italic;}
p.oblique {
font-style: oblique;}
-------------------------------------------------------------------------
Fontin koon muuttaminen
h1 {
font-size: 40px;}
h2 {
font-size: 30px;}
p {
font-size: 14px;}
------------------------------------------------------------------------
Sivun taustalle kuva
body {
background-image: url("paper.gif");}
-----------------------------------------------------------------------------
Lähteet:https://www.w3schools.com/css/
Tee itsellesi muistilista mielestäsi 20 tärkeimmästä CSS parametrista.
Otsikkon paikka
h1 {
text-align: center;}
h2 {
text-align: left;}
h3 {
text-align: right;
}
--------------------------------------
Värit
body {
color: blue;}
h1 {
color: green;}
-------------------------------------
Tekstin varjostus
h1 {
text-shadow: 3px 2px red;}
-------------------------------------
Reunat
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}
------------------------------------------------------------
Fontin muuttaminen
p {
font-family: "Times New Roman", Times, serif;}
---------------------------------------------------------------
Fontin tyyli
p.normal {
font-style: normal;}
p.italic {
font-style: italic;}
p.oblique {
font-style: oblique;}
-------------------------------------------------------------------------
Fontin koon muuttaminen
h1 {
font-size: 40px;}
h2 {
font-size: 30px;}
p {
font-size: 14px;}
------------------------------------------------------------------------
Sivun taustalle kuva
body {
background-image: url("paper.gif");}
-----------------------------------------------------------------------------
Lähteet:https://www.w3schools.com/css/
Kommentit
Lähetä kommentti