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);   } } 

http://codeply.com/go/scawdd3m0d


Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -