html - Bootstrap for IE8 -
i trying use bootstrap css ie-8 browser.
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="css/bootstrap.css"> <link rel="stylesheet" href="css/main.css"> </head> <body> <div class="container"> <div class="col-md-12"> <div class="col-md-6">hello</div> <div class="col-md-6">sandy</div> </div> </div> </body> </html> but can't see 2 divs inside container next each other. in adjacent columns, bootstrap css not working here.
i not using media queries, maybe respond.js not required here. how can make working in ie-8?
i believe need put columns row.
<div class="container"> <div class="row"> <div class="col-md-12"> <div class="col-md-6">hello</div> <div class="col-md-6">sandy</div> </div> </div> </div>
Comments
Post a Comment