guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Hyperlinks!


From: Danny Milosavljevic
Subject: Re: Hyperlinks!
Date: Mon, 13 Apr 2020 16:41:02 +0200

Hi Ludo,

On Mon, 13 Apr 2020 15:56:22 +0200
Ludovic Courtès <address@hidden> wrote:

> > when you mouse-over the function name line, a
> > "permalink to this definition" appears.  
> 
> I’m not sure how to do that.  Isn’t there some JavaScript involved?

The CSS selector ":hover" selects the block only when you are hovering over it:

a[name] img {
  display: none;
}

a[name]:hover img {
  display: inline;
}

Used like that:

<p><a name="anchor1">with class <img src="a.png"></a>
...</p>

Attachment: pgpvOiavrZt5V.pgp
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]