Skip to content

CSS Hover Selector

Bram Adams
Bram Adams

Table of Contents

Select and style a link when you mouse over it:
a:hover { background-color: yellow;} (View Highlight)

As mobile internet usage goes up, the use of hover makes less sense with tapping instead of moving a pointer and clicking as a mode of traversing a web page. All hail the interaction observer, the new way of managing "attention" on a page

a:hover { background-color: yellow; }
programming

Bram Adams

writer, programmer

Comments


Related Posts

Members Public

Issue 15: Houston, We Have a State Transition

Yes Houston, I tried jiggling the knob, that was the first thing I tried!

Issue 15: Houston, We Have a State Transition
Members Public

How GPT Helped Me Write an e2e App From Bed (yt Assets From transcript)

What challenges can GPT overcome when combined with human laziness?

How GPT Helped Me Write an e2e App From Bed (yt Assets From transcript)
Members Public

Writing OpenAPI with... OpenAI

How can developers quickly and easily convert TypeScript handler functions into OpenAPI specs?

Writing OpenAPI with... OpenAI