0

In continuation to the earlier question here, I want to know how can we lock the tag on a image so that changing screen resolution doesn't change the clickable target area?

<area shape="rect" coords="48,341,294,275" href="http://www.lego.com/en-us/">

The above coordinates are decided based on a particular screen size and browser and are subject to change.

Is there any facility in HTML5?

Community
  • 1
  • 1
Amrit
  • 2,295
  • 4
  • 25
  • 42

1 Answers1

0

This should help.

textarea {
    resize: none;
}
user3443160
  • 106
  • 9