<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<section>
<article></article>
</section>
<style>
* {
margin: 0;
padding: 0;
}
section {
width: 300px;
height: 3%;
margin: 10px;
border: 20px dotted peru;
padding: 30px;
background-color: tan;
position: relative;
}
article {
width: 100px;
height: 100px;
margin: 10px;
border: 20px dashed wheat;
padding: 30px;
background-color: aqua;
}
</style>
<script>
const section = document.querySelector('section')
const article = document.querySelector('article')
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<section>
<article></article>
</section>
<style>
* {
margin: 0;
padding: 0;
}
section {
width: 300px;
height: 3%;
margin: 10px;
border: 20px dotted peru;
padding: 30px;
background-color: tan;
position: relative;
}
article {
width: 100px;
height: 100px;
margin: 10px;
border: 20px dashed wheat;
padding: 30px;
background-color: aqua;
position: absolute;
top: 20px;
}
</style>
<script>
const section = document.querySelector('section')
const article = document.querySelector('article')
</script>
</body>
</html>