我的代码如下:
main这个div我做成了可以随意缩放改变其大小,即他的height和width是随时改变的,top这个div的高度是固定的,我想让bottom这个div的高度随着main这个div的高度改变而改变,填充剩余的部分,即始终等于main.height-top.height,请问如何用 CSS的方式解决?
回复讨论(解决方案)
只能用JS去解决了
bottom的高度和宽度使用百分比,即100%试一试。
bottom的高度和宽度使用百分比,即100%试一试。
top是有一个高度的,用100%的话,会超出的。
只能用JS去解决了
就是不想用js的方式解决啊、、、、
在main中的高度确定后,减去top的高度,就是bottom的高度
main这个div你做成随意缩放是什么意思?是用鼠标可以拖动main这个div吗?
用position试试看,然后main跟bottom的高度用百分比。
在main中的高度确定后,减去top的高度,就是bottom的高度
这样说没错,但是如何用 CSS实现?
main这个div你做成随意缩放是什么意思?是用鼠标可以拖动main这个div吗?
对,我做的就是一个类似文件夹的功能,打开后,可以拖动,可以缩放,在缩放时,main这个div的高度和宽度是在一直变化的,用js的方式当然可以解决,但我就是想用CSS的方式解决,不知道有没有好的方法
根据7楼pad1614同学的提醒,最后我采用的是这样的方法:将top的position设置为absolute,将bottom的heigth设置为100%,再在bottom里面添加一个div,其高度和top一样,这样top就会将其覆盖,bottom中剩下的内容则在top的下面显示出来,代码如下:
.top {height:30px; width:100%;position:absolute}
.top2 {height:30px}
.bottom{height:100%}
CSS是可以的
.main{ padding-top:40px; /*top的高度 假?40px*/ position:relative;}.top{ position:absolute; /*固定在上面*/ top:0; left:0; width:100%;}.bottom{ height:100%;}
CSS是可以的
.main{ padding-top:40px; /*top的高度 假?40px*/ position:relative;}.top{ position:absolute; /*固定在上面*/ top:0; left:0; width:100%;}.bottom{ height:100%;}
你这是
这个意思吗?用top覆盖在bottom上,可以实现楼主说的效果吗??
CSS是可以的
.main{ padding-top:40px; /*top的高度 假?40px*/ position:relative;}.top{ position:absolute; /*固定在上面*/ top:0; left:0; width:100%;}.bottom{ height:100%;}
你这是
Does this mean? Can the effect mentioned by the original poster be achieved by covering the bottom with top? ?
Original? No?
Example:
http://jsbin.com/hesuxonozula/2/edit
CSS is OK
.main{ padding-top:40px; /*top的高度 假?40px*/ position:relative;}.top{ position:absolute; /*固定在上面*/ top:0; left:0; width:100%;}.bottom{ height:100%;}
This is okay, but one problem is that the height of main will increase the height of top. If there is a parent div outside main, and the main If height is set to 100%, then the total height of main will exceed the height of the parent div. But thank you very much for proposing another good method!
CSS is OK
.main{ padding-top:40px; /*top的高度 假?40px*/ position:relative;}.top{ position:absolute; /*固定在上面*/ top:0; left:0; width:100%;}.bottom{ height:100%;}
This is OK, but there is a problem that the height of main will be Increase the height of top. If there is a parent div outside main and set the height of main to 100%, then the total height of main will exceed the height of the parent div. But thank you very much for proposing another good method!
.main{
box-sizing : border-box;
}
CSS is OK
.main{ padding-top:40px; /*top的高度 假?40px*/ position:relative;}.top{ position:absolute; /*固定在上面*/ top:0; left:0; width:100%;}.bottom{ height:100%;}
This way is OK, but there is a problem that the height of main will increase the height of top. If there is a parent outside main div, and set the height of main to 100%, then the total height of main will exceed the height of the parent div. But thank you very much for proposing another good method!
.main{
box-sizing : border-box;
}
God, it sure works! ! !
Thank you very much! ! !
Let’s post the code:
In this way, no matter how the height of outer changes, the height of bottom is the height of main minus the height of top, and the height of top is fixed.
Thanks to classmate u012280941!

更改图像的透明度或将图像淡入背景也可以使用MicrosoftWord完成。它可以让您调整颜色和透明度,应用背景效果等等。在本文中,我们将看到在Word中使图像透明是多么容易和简单。如何使图像看起来透明第1步:打开MicrosoftWord,然后在顶部单击插入选项第2步:单击“形状”下拉菜单并选择您选择的形状。在这里,我将选择矩形。第三步:画一个矩形选择单词页上的一个区域,然后右键单击它。第4步:从出现的选项中单击“填充”下拉菜单并选择“图片”以添加图像。第5步:单击Stock

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

随着数字时代的发展,图像处理软件成为我们生活和工作中不可或缺的一部分。其中,Adobe公司开发的Photoshop(简称PS)是最著名的图像处理软件之一,其功能强大,操作灵活,深受用户的喜爱。然而,使用PS时,有些用户反映快捷键“填充”(Fill)无法正常使用的问题,给用户的使用体验带来了困扰。快捷键是软件中提供的一种快速操作的方式,避免繁琐的鼠标点击操作,

如何在PowerPoint中将图像插入形状将图像插入形状对于创建在演示文稿中脱颖而出的视觉元素非常有用。它可以是箭头、心形或十字形,但这些形状中的每一种都提供了一种目的或情感,可以帮助您的图像充满冲击力。如果您不确定如何将图像插入PowerPoint中的形状,请按照以下步骤操作:打开您的PowerPoint演示文稿。单击功能区中的插入选项卡。单击形状。选择所需的形状并将其绘制在幻灯片上。接下来,选择您绘制的形状,然后选择功能区栏上的“形状格式”选项卡。单击形状填充。从形状填充下拉菜单

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
