Fortūnos ruletė
Iš FragoriaWiki.
(Skirtumai tarp versijų)
												
			
		 (Naujas puslapis:  == Fortunos ratas ==)  | 
		|||
| Eilutė 1: | Eilutė 1: | ||
| + | <head>  | ||
| + | <style>  | ||
| + | h1 {  | ||
| + |     background-color: green;  | ||
| + | }  | ||
| - | + | div {  | |
| + |     background-color: lightblue;  | ||
| + | }  | ||
| + | |||
| + | p {  | ||
| + |     background-color: yellow;  | ||
| + | }  | ||
| + | </style>  | ||
| + | </head>  | ||
| + | <body>  | ||
| + | |||
| + | <h1>CSS background-color example!</h1>  | ||
| + | <div>  | ||
| + | This is a text inside a div element.  | ||
| + | <p>This paragraph has its own background color.</p>  | ||
| + | We are still in the div element.  | ||
| + | </div>  | ||
| + | |||
| + | </body>  | ||
23:10, 2016 sausio 8 versija
<head> <style> h1 {
background-color: green;
}
div {
background-color: lightblue;
}
p {
background-color: yellow;
} </style> </head> <body>
CSS background-color example!
This is a text inside a div element.
This paragraph has its own background color.
We are still in the div element.
</body>
