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

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -