Bootstrap contianer half normal half fluid -
bootstrap has 2 types of containers: responsive fixed width container , full width container, spanning entire width of viewport. need build container left side if fixed width , right side full width. possible?
thanks.
bootstrap not designed type of layout since columns widths percentage-based (fluid). you'd need override ride columns widths , media queries. example..
#fixed { background-color:#f5f5f5; padding-top:5px; } @media (min-width:992px) { #fixed { width: inherit; min-width: 585px; max-width: 585px; background-color:#f5f5f5; float: left; height: 100%; position:relative; overflow: auto; } #fluid { width:calc(100% - 585px); } }
Comments
Post a Comment