Jump to content

Resizeable page


jwcane

Recommended Posts

Trying to create the effect that, when browser window is smaller than html content, all table cells and images are re-sized to fit the browser.

 

In css file the class "resizable" is defined as follows:

 

.Resizable {
resize:both;
overflow:auto;
}

In html source all content lies within the following tag set:

 

<div class="resizable">

.

.

.

</div>

Link to comment
Share on other sites

I think "resize" is intended to allow "grab and drag" resizing by the user. You probably just want percentage dimensioning and media queries. You can also try googling "responsive css design."

Edited by davej
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...