skip to Main Content

Twitter bootstrap – Bootstrap: responsive div in between two fixed div elements

I have a responsive <div> element placed in between two fixed <div> elements. I've tried the following code: <html> <head> <title>Sample1</title> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css"> </head> <body> <div style="width: auto"> <div style="float: left; width:270px; background-color: green">Fixed div</div> <div style="float: right;…

VIEW QUESTION
Back To Top
Search