html - CSS height auto clips contents on small device -


if height set auto, why on big screens whole content of responsive div shown, on smaller device height not adjusted go show contents, content clipped or cut, how fix issue?

.mycontainer {      height: auto; }  <div class="mycontainer">     lots of text in divs </div> 

the above cut text content on smaller device.

this basic vertical-align issue. don't have specific html or css...which helpful next time, going on template page sent: display properties of parallax-container , text container need changed display:table; , display:table-cell; can add vertical-align:middle; text container move text vertically without cutting off. however, since font same size on screens, might want use media queries compress on smaller screens, making better visibility on smaller devices well.


Comments

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -