gpt4 book ai didi

html - 如何固定自定义侧边栏位置

转载 作者:行者123 更新时间:2023-11-28 06:43:38 24 4
gpt4 key购买 nike

这是我的代码

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width = device-with, initial-scale = 1">
<title>Tittle</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

<style>

body, html, .sidebar, .body {
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}

#container {
width: 100%;
height: 100%;
}

.sidebar {
background-color: green;
width: 10%;
float: left;
height: 100%;
//position: fixed;
}

.body {
float:left;
width:90%;
height:100%;
}

</style>

</head>
<body>

<div id="container">
<div class="sidebar">

</div>

<div class="body">

<div id="Div">
<img src="http://www.wallpapereast.com/static/cache/85/2f/852fa0958af9bfca3e64fa66aa1ad907.jpg" alt="image" width="100%" height="1200px"/>
</div>

</div>

</div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>

这段代码工作完美,但我希望侧边栏在用户滚动页面时固定在它的位置输出

enter image description here

我试过这个 CSS 属性

postion: fixed;

这是输出

enter image description here

我需要帮助不知道该怎么做,我已经搜索了很多但找不到合适的解决方案

最佳答案

尝试将 margin-left: 10% 添加到您的 .body 类(并删除它的 float)

关于html - 如何固定自定义侧边栏位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34158541/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com