[RESOLVED][2.0] How to make Panel control always fit to my page width...??
[2.0] How to make Panel control always fit to my page width...??
and then how to place some control to the bottom of the page??
Re: [2.0] How to make Panel control always fit to my page width...??
What do you mean your "page"?
Re: [2.0] How to make Panel control always fit to my page width...??
Mean fit to Browser page width....
I don't know browser in diffrent resolution is what width so I finding any coding can make it...?
I want to make my panel control width fit to the browser..
Re: [2.0] How to make Panel control always fit to my page width...??
Set its width to 100%. As long as it has no container/parent controls, it will expand to fit the page width.
To set the control at the bottom, either make another div that comes after the current DIV and align it wherever you need to, or make "position:absolute;bottom:0px;".
Re: [2.0] How to make Panel control always fit to my page width...??