Questions tagged «height»

该属性确定Y轴上对象的大小。请不要使用此标签,因为它在您的帖子中没有分类价值。


10
jQuery在加载时获取iframe内容的高度
我在Main.php的iframe中加载了一个帮助页面help.php,将页面加载到iframe中后,如何获取该页面的高度? 我问这个问题是因为我无法将iframe的高度设置为100%或自动。这就是为什么我认为我需要使用javascript ..我正在使用jQuery CSS: body { margin: 0; padding: 0; } .container { width: 900px; height: 100%; margin: 0 auto; background: silver; } .help-div { display: none; width: 850px; height: 100%; position: absolute; top: 100px; background: orange; } #help-frame { width: 100%; height: auto; margin:0; padding:0; } JS: $(document).ready(function () …
84 jquery  iframe  height  onload 


4
如何在Flutter的GridView中为窗口小部件设置自定义高度?
即使在指定Container GridView的高度之后,我的代码仍在生成方形小部件。 class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() => new _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { List<String> widgetList = ['A', 'B', 'C']; @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text(widget.title), ), body: …

8
如何填充剩余高度的100%?
+--------------------+ | | | | | | | | | 1 | | | | | | | | | +--------------------+ | | | | | | | | | 2 | | | | | | | | | +--------------------+ 如上所示的(1)的内容是未知的,因为它在动态生成的页面中可能会增加或减少。如上所示,第二个div(2)应该填充剩余的空间。 这是我的html的示例 <div id="full"> <!--contents of 1 --> <div …
78 html  css  height  fill 

5
从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} } // "http://snook.ca/files/mootools_83_snookca.png" //1024x678 // "http://shijitht.files.wordpress.com/2010/08/github.png" //128x128 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/

2
iOS 7中导航栏的高度是多少?
我刚刚使用默认的Master Details模板创建了一个简单的iOS 7应用。 在MasterViewController.m,viewDidAppear方法,我登录了 self.navigationController.navigationBar.frame.size.height self.navigationController.navigationBar.frame.origin.y 并分别收到44和20。这看起来很奇怪,因为据我所读,iOS 7中的导航栏应为64点高,并从0点开始,以便它位于状态栏的下方。我读的是 1)iOS 7 UI过渡指南 由于状态栏是透明的,因此其后面的视图通过 2)在导航栏中使用背景图像 如果您的应用程序使用自定义图像作为该栏的背景,则需要提供一个“ taller”图像,使其在状态栏后面延伸。导航栏的高度从44点(88像素)更改为64点(128像素)。

19
更改UITabBar的高度
我UITabBarController用作根视图,并且应用程序支持iOS 6及更高版本。项目类的层次结构如下。 UITabBarController - tab1 - UINavigationController - UIViewController - UIViewController . . - tab2 - UINavigationController - UIViewController - UIViewController . . . - tab3 - UIViewController - tab4 - UIViewController 我使用下面的代码来更改上面层次结构UITabBar中的一个UIViewControllers(位于里面UINavigationController)的高度。 CGRect tabbarFrame = self.tabBarController.tabBar.frame; tabbarFrame.size.height += 60; self.tabBarController.tabBar.frame = tabbarFrame; 但是它并没有改变高度。UITabBar以默认高度显示。尽管记录其值会打印更改的值,如下所示。 <UITabBar: 0xb528f60; frame = (0 431; …

2
在高度未知的情况下使用flexbox垂直居中时出现的问题
我的布局有一个容器flex-container和一个孩子。 HTML: <div class="flex-container"> <div>text</div> </div> 容器和孩子的身高未知。目标是: 如果孩子的身高低于容器,则其水平和垂直居中。 如果孩子的身高比容器大,则它会调整到顶部和底部,我们可以滚动。 方案: 使用flexbox将元素居中的最快方法是: 显示代码段 .flex-container { display: flex; align-items: center; /* vertical */ justify-content: center; /* horizontal */ width: 100%; height: 300px; /* for example purposes */ overflow-y: scroll; background: #2a4; } .flex-container > div { background: #E77E23; width: 400px; } <div …
68 css  flexbox  height  overflow 

11
如何强制一个浮动DIV匹配另一个浮动DIV的高度?
我的HTML代码只是将页面分为两列,分别为65%,35%。 <div style="float : left; width :65%; height:auto;background-color:#FDD017;"> <div id="response"> </div> </div> <div style="float : left; width :35%;height:auto; background-color:#FDD017;"> <div id="note"> </div> </div> 在中response div,我有可变数据;在中note div,我有固定数据。即使两个div具有两个不同的数据集,我仍需要它们以相同的高度显示,以便背景色看起来好像填充了包含两者的框。当然,问题出在response div,因为其高度取决于当前显示在其中的数据量。 如何确保两列的高度始终相等?
68 html  css  height 

1
iOS Chrome计算出错误的文档高度
为了填充整个页面的高度,我使用height: 100%;了html和body标签,并且在关闭浏览器并重新打开之前,它可以正常工作。(由于移动设备上的问题,我不使用100vh https://nicolas-hoizey.com/2015/02/viewport-height-is-taller-than-the-visible-part-of-the-document-in -some-mobile-browsers.html) 重现步骤: 在iPhone上的Google Chrome浏览器中打开https://angelika94.github.io/rick/(您会看到导航(Morty和Beer)位于页面底部)的CSS Rick屏幕截图 关闭浏览器并将其从多任务导航中删除:https : //support.apple.com/zh-cn/HT201330 再次打开浏览器(您将看到底部导航移离了“第一个屏幕”,现在您需要滚动才能看到它) css Rick的屏幕快照,不带导航 在以下情况下,页面将自行修复: 更新页面 将设备旋转到横向 通过标签打开和关闭浏览器的导航 关闭并重新打开浏览器,而无需在多任务导航中将其关闭 为什么会发生?如何解决此问题? 先感谢您!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.