Jump to content

Resizing images on Tablet


mlolcu

Recommended Posts

Dear friends,I have the following code. Images (1024px width) resizes rightly on Chrome for PC, but not on Chrome for tablet: I think images do not resizes at all, so the webpage is scaled and text is smaller.

What did I do wrong?Thank you very much

<div class="Container">        <div class="Content">            <div style="text-align:left">                text...<br />                <a href="gallery.htm"><img src="images/gallery.jpg" class="WidthImages"/></a>            </div>         </div>    </div>
.Container{    width:100%;    height: 100%;    position:relative;    top:0;    left:0;    overflow:auto;    text-align:justify;    z-index:10;}.Content{    position:relative;    font-family: Verdana,Arial;    font-size: 14px;    padding-top: 30px;    padding-bottom: 30px;    padding-left: 30px;    padding-right: 30px;    margin-left: 140px;    margin-right: 10%;    overflow:auto;}.WidthImages{    width: 100%;    max-width:1024px;}
Edited by mlolcu
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...