当前位置:Gxlcms > 前端框架 > css怎么设置某一块固定

css怎么设置某一块固定

时间:2021-07-01 10:21:17 帮助过:42人阅读

css设置某一块div固定的方法:首先创建一个HTML示例文件;然后在body中定义一个div;最后通过“position: fixed;”等属性设置该div固定不动即可。

本文操作环境:Windows7系统、HTML5&&CSS3版,DELL G3电脑

css控制某个div固定不动

固定最常用的方法就是对其进行定位。

但在定位的时候需要注意:

①如果想固定在屏幕的某处,那么确定被固定的元素的父元素是body;

②为固定元素设置宽高。

比如给你的footer的class添加如下代码:

<style type="text/css">
    .shopping_cart {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60px;
        background: #eee;
        z-index: 10;
    }
</style>

如顶部固定不动

<style type="text/css">
  .editFrom {  ----div的选择器
    position: fixed; ----position样式
    left: 0; 
    top: 0; 
    width: 100%;
    height: 30%;  ---div占用位置的高度
    background: #eee;
    z-index: 10;--折叠级别
  }
</style>

【推荐学习:css视频教程】

以上就是css怎么设置某一块固定的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行