0

Possible Duplicate:
Styling native tooltip from title=“Tooltip text”

Is any way to control browser tooltip in CSS.

like adjust height and width .. something

-spk-

Community
  • 1
  • 1
sprabhakaran
  • 1,615
  • 5
  • 20
  • 36

1 Answers1

1

Not for the built in tooltips with title, no.

You can create tooltip-like constructs of your own, though, by using a div (or anything) that is hidden until the user hovers over your element. See the :hover pseudo-class.

Mr Lister
  • 45,515
  • 15
  • 108
  • 150