引导:在两个固定的 div 元素之间响应式 div



我有一个响应式<div>元素放置在两个固定<div>元素之间。我尝试了以下代码:

 <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; width: 120px; background-color: yellow"> Fixed div</div>
         <div style="background-color: red" class="row">Responsive div</div>        
     </div>
</body>
</html>

目前,响应式<div>元素正在占据整个屏幕。当我尝试检查宽度和高度时,它已经获得了我的整个主要<div>。有什么方法可以将这个响应式<div>放在 2 个固定<div>中?

检查下面的代码: 在这里,我更改了 Div 序列并更改了三者的显示样式。

<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="display:table; width:100%">
    <div style="display:table-cell; width:270px; background-color: green">Fixed div </div>
    <div style="background-color: red; display:table-cell;"> Responsive div </div>
    <div style="display:table-cell; width: 120px; background-color: yellow"> Fixed div</div>
  </div>
</body>
</html>

由于您已经获得了它们的div 宽度,因此我们可以利用calc

width: calc(100% - 390px);

390px值是左侧和行驶侧元素的宽度之和。

<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; width: 120px; background-color: yellow"> Fixed div</div>
    <div style="background-color: red;  width: calc(100% - 390px);margin-left: 270px;" class="row"> Responsive div </div>
  </div>
</body>
</html>

试试这个:

<body style="display:table;width:100%;">
  <div style="float: left; width:270px; background-color: green;display:table-cell;">Fixed div </div>
  <div style="background-color: red;display:table-cell;" class="row"> Responsive div </div>  
  <div style="float: right; width: 120px; background-color: yellow;display:table-cell;"> Fixed div</div>  
</body>

最新更新