Text that shows an underline on hover

前端 未结 3 976
心在旅途
心在旅途 2021-01-01 08:28

Can you underline a text on hover using css? (Like the behavior of a link but not an actual link.)

  1. you have the following text Hello work
  2. when you h
3条回答
  •  萌比男神i
    2021-01-01 09:30

    You just need to specify text-decoration: underline; with pseudo-class :hover.

    HTML

    Hello world
    

    CSS

    .underline-on-hover:hover {
        text-decoration: underline;
    }
    

    I have whipped up a working Code Pen Demo.

提交回复
热议问题