เราสามารถปรับแต่ง link ภายในหน้าเว็บ ด้วยการกำหนด style ให้กับแท็ก a

จากตัวอย่าง categories ให้เราเพิ่ม style ของแท็ก a เข้าไปดังนี้

  • style ทั่วไป style.css

    a{
      text-decoration: none;
      color: black;
    }
    

    เป็นการกำหนดให้ link ทั้งหมดไม่มีเส้นด้านล่าง และมีสีดำ

  • กำหนด Style เมื่อมี mouse cursor ไปชี้ (hover)

    a:hover {
      color: red;
    }
    
  • กำหนด style เมื่อถูก click ( active )

    a:active {
      color: green;
    }
    
  • กำหนด style เมื่อ link นั้นคือหน้าที่เคยเปิดมาแล้ว ( visited )

    a:active {
      color: yellow;
    }
    

results matching ""

    No results matching ""