Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

จะแสดงองค์ประกอบบนโฮเวอร์ด้วย CSS ได้อย่างไร


ในการแสดงองค์ประกอบบนโฮเวอร์ด้วย CSS โค้ดจะเป็นดังนี้ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
   body{
      margin:20px;
      padding:20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   }
   .hiddenText {
      display: none;
   }
   .hoverDiv:hover + .hiddenText {
      display: block;
      color: rgb(71, 0, 65);
      font-size: 22px;
      font-weight: bold;
   }
</style>
</head>
<body>
<h1>Display an Element on Hover Example</h1>
<div class="hoverDiv" style="font-size: 18px;">Hover over me.</div>
<div class="hiddenText">This text is shown by hovering on the above div</div>
</body>
</html>

ผลลัพธ์

รหัสด้านบนสร้างผลลัพธ์ต่อไปนี้ -

จะแสดงองค์ประกอบบนโฮเวอร์ด้วย CSS ได้อย่างไร

เมื่อวางเมาส์เหนือข้อความ "วางเมาส์เหนือฉัน" -

จะแสดงองค์ประกอบบนโฮเวอร์ด้วย CSS ได้อย่างไร