I'm working on angular material layout, it's working fine in all the browsers including IE11, but for smaller screen resolutions, I'm facing content overlapping issue. Here's the code I've tried:
HTML:
<div layout="row" layout-sm="column" layout-xs="column" layout-wrap>
<div class="innersection" flex="25" flex-sm="100" flex-xs="100" layout="row">
Title <br/><br/> Description:
<br/> Manage your account, username and password setting<br/> Manage your account, username and password setting
</div>
<div class="innersection" flex="25" flex-sm="100" flex-xs="100" layout="row">
Title <br/><br/> Description:
<br/> Manage your account, username and password setting
</div>
<div class="innersection" flex="25" flex-sm="100" flex-xs="100" layout="row">
Title <br/><br/> Description:
<br/> Manage your account, username and password setting<br/> Manage your account, username and password setting
</div>
<div class="innersection" flex="25" flex-sm="100" flex-xs="100" layout="row">
Title <br/><br/> Description:
<br/> Manage your account, username and password setting
</div>
</div>
CSS:
.innersection {
background: #fff; padding:8px; border:1px solid;
}
Here's working fiddle example: http://jsfiddle.net/xjb0soLn/17/
Appreciate your help.