position card
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.card{
width: 300px;
height: 400px;
background: gray;
border-radius: 15px;
position: relative;
margin: 20px;
}
.offdis{
width: 68px;
height: 35px;
background: yellow;
position: absolute;
bottom: 10px;
right: 0px;
padding: 7px;
}
.new{
background: #65e965;
padding: 10px;
position: absolute;
top: 10px;
}
</style>
</head>
<body>
<div class="container" style="display: flex;flex-wrap: wrap;">
<div class="card">
<span class="offdis">
<h3>10%Off</h3>
</span>
<span class="new">
New
</span>
</div>
</div>
</body>
</html>
Comments
Post a Comment