i’am new in web programing
is it be wise to use position: absolute; on controls ?
if no – why ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want absolute control where your controls display on screen (regardless of the size of the screen), then go for it.
Most people use a mix of
display: absolute;and other positioning techniques to get the desired layout.Keep in mind, though, that none of this has to do with ASP.NET (besides the fact that Visual Studio sometimes defaults to absolute positioning of elements in the WYSIWYG Editor). They key there is the same as other WYSIWYG editors…write the markup by hand.