Nested Anchor Links using CSS

Have you ever encountered a situation where you have an area, let’s say a div> element, which is a hyperlink and you wanted another hyperlink inside that div> element which should also be clickable ?

- Powered by CSS attribut : inset
- Powered by CSS attribut : position


.url-ext {
  position: absolute;
  inset: 0;
}

.url-int {
  position: relative;
  inset: 0;
  text-decoration: none;
}