我有一個響應式<div>
元素放置在兩個固定的<div>
元素之間。我試了下面的代碼:Bootstrap:兩個固定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>
之內?