HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<html><head><style> .background { /* Styles for the background */ background-color: lightgreen; background-image: url('https://cdn.lyty.dev/site-images/css_background-example-flower.png'); background-position: bottom center; background-repeat: no-repeat; /* End of styles for the background */ font-size: 21px; text-align: center; height: 120px; } </style> </head><body> <div class="background">Working with CSS Background!</div> </body></html>