একটি উপাদান অপসারণ করতে, CSS-এ প্রদর্শনের কোনো প্রপার্টি মান ব্যবহার করুন। আমাদের একটি উদাহরণ দেখা যাক কোন সম্পত্তির মান −
বাস্তবায়ন করার জন্যউদাহরণ
আসুন এখন একটি উদাহরণ দেখি -
<!DOCTYPE html>
<html>
<head>
<style>
span {
background-color: orange;
color: white;
}
p.demo {
display: none;
}
span.demo1 {
display: inline;
}
</style>
</head>
<body>
<h1>Match Details</h1>
<div>
Match will begin at <p class="demo">9AM</p> 10AM on 20th December.
</div>
<div>
Match will end at <span class="demo1">5PM</span> on 20th December.
</div>
</body>
</html> আউটপুট

উদাহরণ
এখন আরেকটি উদাহরণ দেখা যাক -
<!DOCTYPE html>
<html>
<head>
<style>
span {
display: none;
}
.demo2 {
text-decoration: underline;
text-decoration-style: double;
text-decoration-color: red;
}
</style>
</head>
<body>
<h1>Details</h1>
<p class="demo">Examination Center near <span>XYZ College</span> ABC College.</p>
<p class="demo2">Exam begins at 11AM.</p>
</body>
</html> আউটপুট
