Popup alignment
I have created a popup using jQuery..
I have 4 div
tags in my html page, and after that the div tag which contains the popup matter is present.
When I click on a link, the popup is getting displayed below the 4 div tags ..and one has to scroll to see the popup
Is there any property to change in the css so that the popup comes above the di开发者_开发百科v tags...??
Can anyone help me with this ??
Yup it's possible, have a look at the Position property.
There's a good tutorial on positioning from w3schools here: http://www.w3schools.com/Css/css_positioning.asp
If you post your code in your original question, we could provide more detailed instructions.
You can use absolute positioning for this. Use .css()
to style the div and give a left
and top
value.
精彩评论