How to create spoiler text?

后端 未结 5 1989
遇见更好的自我
遇见更好的自我 2021-02-20 04:39

Hello I was wondering how to make spoiler text on a website with html/css. What I was is, text that is black with black background, but when hovered over, makes the black text

5条回答
  •  無奈伤痛
    2021-02-20 05:27

    .spoiler, .spoiler2{ 
      color: black; 
      background-color:black;
    }
    
    .spoiler:hover{
      color: white;
      }
    
    .spoiler2:hover { 
      background-color:white; 
      }
    test
    
    

    Then when hovered over

    other test

提交回复
热议问题