html - CSS prevent from resizing at a point? -
hi making website , trying make width of object not overscale, i.e have body tag , set page width 60% , fine , trying set min width of xx% elements not go on each other , trying stop browser going on xx% , show content on page.
i hope understands trying , me this.
thanks
.example{ max-width: 60%; } .example{ min-width:60%; }
you mean max-width , min-width ?
.wrapper { min-width: 50em; /* overrides max-width */ width: 100%; max-width: 20em; /* @ 20em wide */ }
Comments
Post a Comment