How to Hide any controls completely from a Page definition?

 Posted by vishalneeraj-24503 on 12/1/2014 | Category: CSS 3 Interview questions | Views: 1621 | Points: 40
Answer:

Suppose,we want to hide Division control(div tag) from Page itself,then we have to write a CSS class for Div.
Here,we have to give position as absolute and top and left position as -9999px as shown below:-
#div_project

{
position: absolute;
top: -9999px;
left: -9999px;
}

Here,#div_project is my division tag.By above CSS,we can hide any controls.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response