CSS - właściwości background-image
background-image
kod |
wynik kodu |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example of CSS background-image property</title>
<style>
body {
background-image: url("grafika/obraz.png");
}
</style>
</head>
<body>
<p>akapit</p>
<div>div</div>
</body>
</html>
|
|