Tag: 高度

CSS:高度填充其余的div?

我不知道这是可能的简单的CSS或如果我必须使用JavaScript的呢? 我在我的网站上有一个侧边栏。 一个简单的div#sidbar它通常约1024px高,但由于它的内容高度dynamic变化。 所以让我们想象下面的情况: <div id="sidebar"> <div class="widget"></div> //has a height of 100px <div class="widget"></div> //has a height of 100px <div id="rest"></div> //this div should have the rest height till to the bottom of the sidebar </div> 我希望div#rest填写其余的边栏,直到它到达div#边栏的底部。 这是纯粹的CSS可能吗?

Android:如何获得准确的高度?

我只需要使用GPS进行精确的高度测量。 我尝试了Location.getAltitude(),但这是非常不准确的。 有什么build议?

CSS:包含div的自动高度,包含div的背景div的100%高度

问题在于,我有一个内容div,它在容器高度方向上拉伸(容器和内容div有自动高度)。 我想要背景容器,这是内容div的兄弟div div伸展来填充容器。 背景容器包含div来将背景分解为块。 背景和容器div有100%的宽度,内容容器没有。 HTML: <div id="container"> <div id="content"> Some long content here .. </div> <div id="backgroundContainer"> <div id="someDivToShowABackground"/> <div id="someDivToShowAnotherBackground"/> </div> </div> CSS: #container { height:auto; width:100%; } #content { height: auto; width:500px; margin-left:auto; margin-right:auto; } #backgroundContainer { height:100%;??? I want this to be the same height as container, but 100% makes it […]

CSS 100%高度布局

我知道这是一个普遍的问题,我查找了一些解决scheme,但是找不到我正在寻找的东西。 我想将其转换为无表格布局。 注意:页眉和页脚必须设置为固定的像素高度(50px是可以的)。 我遇到的主要问题是,我无法在中间得到那个“大箱子”,performance得和表格一样。 有可行的解决scheme,可变长度的内容(文本,图像),但我希望这个盒子看起来像一个盒子 – 有边框,圆angular和所有的行为。

更改UITabBar高度

我使用UITabBarController作为根视图,应用程序支持iOS 6及以上版本。 项目类层次如下。 UITabBarController – tab1 – UINavigationController – UIViewController – UIViewController . . – tab2 – UINavigationController – UIViewController – UIViewController . . . – tab3 – UIViewController – tab4 – UIViewController 我使用下面的代码来更改上面的层次结构中UIViewControllers(位于UINavigationController )之一的UITabBar高度。 CGRect tabbarFrame = self.tabBarController.tabBar.frame; tabbarFrame.size.height += 60; self.tabBarController.tabBar.frame = tabbarFrame; 但它不改变高度。 UITabBar以默认高度显示。 虽然logging它的值打印更改值如下所示。 <UITabBar: 0xb528f60; frame = (0 431; 320 […]

从url获取远程图像的宽度高度

所以警报提供了未定义的宽度和高度值。 我认为img.onload计算的图像的w和h值并没有被传递给返回的值,也可能在onload计算之前返回w和h: function getMeta(url){ var w; var h; var img=new Image; img.src=url; img.onload=function(){w=this.width; h=this.height;}; return {w:w,h:h} } // "../files/mootools_83_snookca.png" //1024×678 // "http://shijitht.files.wordpress.com/2010/08/github.png" //128×128 var end = getMeta("http://shijitht.files.wordpress.com/2010/08/github.png"); var w = end.w; var h = end.h; alert(w+'width'+h+'height'); 我如何能够显示正确的宽度和高度? http://jsfiddle.net/YtqXk/

JavaScript – 获取浏览器高度

我正在寻找一个代码片段来获取浏览器窗口内的可视区域的高度。 我有这个代码,但是它有一些bug,就好像身体没有超过窗口的高度,然后又回来了。 document.body.clientHeight; 我已经尝试过其他一些东西,但是要么返回NaN,要么与上面的高度相同。 有谁知道如何获得浏览窗口的真正高度?

如何获得一个button的高度来匹配另一个元素的高度?

我想把一个button旁边的EditText,我希望他们的高度匹配。 例如,从内置的Android浏览器: Gobutton与EditText字段的高度相同。 我知道我可以在父视图中包装这两个视图,并将它们的高度设置为fill_parent,这将使它们匹配。 不过,我想这样做,而不必给布局一个静态的大小。 我宁愿EditText根据字体大小采取任何需要的高度,然后让它旁边的button匹配任何可能的高度。 这可能与一个XML布局?

位置:绝对和父母身高?

我有一些容器,他们的孩子只有绝对/相对定位。 如何设置容器高度,以便他们的孩子将在里面? 代码如下: HTML <section id="foo"> <header>Foo</header> <article> <div class="one"></div> <div class="two"></div> </article> </section> <div style="clear:both">Clear won't do.</div> <!– I want to have a gap between sections here –> <section id="bar"> <header>bar</header> <article> <div class="one"></div><div></div> <div class="two"></div> </article> </section> CSS article { position: relative; } .one { position: absolute; top: 10px; left: 10px; background: red; […]

iPad屏幕键盘的高度是多less?

我在这里寻找两个数字:纵向的高度和横向的高度。 不要以厘米或英寸来回答,而应以像素为单位。