<style>
img{
width: 300px;
float: left;
margin: 20px;
}
p{ border: 1px solid gray; }
</style>
</head>
<body>
<img src="puppy.jpg">
<p>
There are many variations of passages of Lorem Ipsum available
</p>
<p>
There are many variations of passages of Lorem Ipsum available
</p>
</body>
<style>
html{ border: 1px solid gray; }
div{
border: 5px solid tomato;
margin: 10px;
}
#me{
position: relative;
left: 100px;
top: 100px;
}
</style>
</head>
<body>
<div id="other">other</div>
<div id="parent">
parent
<div id="me">me</div>
</div>
</body>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#column{
text-align: justify;
column-count: 4;
/*column-width: 200px;*/
column-gap: 30px;
column-rule-style: solid;
column-rule-color: tomato;
column-rule-width: 5px;
}
h1{
column-span: all;
}
</style>
</head>
<body>
<div id="column">
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
<h1>There are many variations of passages of Lorem Ipsum available</h1>
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
</body>
</html>
<style>
div{
border: 5px solid gray;
background-color: tomato;
height: 500px;
background-image: url('sun.png');
background-repeat: no-repeat;
background-attachment: scroll;
/*background-size: 500px 1000px;*/
/*background-size: contain;*/
background-position: left bottom;
}
</style>
</head>
<body>
<div>
There are many variations of passages of Lorem Ipsum available
There are many variations of passages of Lorem Ipsum available
</div>
</body>
** Cache
** Browser Cache
<style>
/*h1{
color: tomato;
}*/
@import url("style.css");
</style>
<link rel="stylesheet" href="style.css">
<style>
/*h1{
color: tomato;
}*/
</style>
</head>
<body>
<h1>page2</h1>
</body>