Tag: 高度

如何调整页面高度到内容高度?

我正在为我的项目使用iTextPDF + FreeMarker。 基本上我使用FreeMarker加载和填充HTML模板,然后使用iTextPDF的XMLWorker将其渲染为pdf。 该模板是: <html> <body style="font-family; ${fontName}"> <table> <tr> <td style="text-align: right">${timestampLabel}&nbsp;</td> <td><b>${timestampValue}</b></td> </tr> <tr> <td style="text-align: right">${errorIdLabel}&nbsp;</td> <td><b>${errorIdValue}</b></td> </tr> <tr> <td style="text-align: right">${systemIdLabel}&nbsp;</td> <td><b>${systemIdValue}</b></td> </tr> <tr> <td style="text-align: right">${descriptionLabel}&nbsp;</td> <td><b>${descriptionValue}</b></td> </tr> </table> </body> </html> 这是我的代码: SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); String errorId = "ERROR-01"; String systemId = "SYSTEM-01"; String description = […]

iPhone – 如何设置uinavigationbar高度?

我想让导航视图的顶部变小一些。 你将如何实现这一目标? 这是我迄今为止所尝试的,但正如你所看到的那样,即使我缩小了导航栏,它所占据的区域仍然在那里(黑色)。 [window addSubview:[navigationController view]]; navigationController.view.frame = CGRectMake(0, 100, 320, 280); navigationController.navigationBar.frame = CGRectMake(0, 0, 320, 20); navigationController.view.backgroundColor = [UIColor blackColor]; [window makeKeyAndVisible];

jquery获取加载时的iframe内容的高度

我有一个帮助页面,help.php,我在main.php中的iframe中加载如何获取此页面的高度,一旦它加载了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 () { $("a.open-help").click(function () { […]

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

肖像的高度和景观的高度以点为单位。

更改UINavigationBar高度

有人能告诉我如何改变导航栏的高度? 这是我迄今为止: CGFloat navBarHeight = 10; self.navigationController.navigationBar.frame.size.width = navBarHeight;

如何在iOS 7上将UITextView的大小设置为其内容?

多年来,我一直在使用已接受的答案。 在iOS 7上,无论文本内容如何,​​contentSize.height都会变成frame.height-8。 什么是调整iOS 7的高度的工作方法?

让div的高度随其内容而扩大

我有这些嵌套的div,我需要主容器扩大(在高度),以适应DIV内部 <!– head –> … <!– /head –> <body class="main"> <div id="container"> <div id="header"> <!–series of divs in here, graphic banner etc. –> </div> <div id="main_content"> <!– this DIV _should_ stretch to accomodate inner divs –> <div id="items_list" class="items_list ui-sortable"> <div id="item_35" class="item_details"> </div> <div id="item_36" class="item_details"> </div> <div id="item_37" class="item_details"> </div> <!– this list […]

Flexbox列子项上的高度为100%

我在Flexbox列中遇到了问题,因为flex'd元素的子元素不以百分比forms响应height 。 我只在Chrome中检查了这一点,并从我的理解是唯一的问题。 这是我的例子: HTML <div class='flexbox'> <div class='flex'> <div class='flex-child'></div> </div> <div class='static'></div> </div> CSS .flexbox{ position:absolute; background:black; width:100%; height:100%; display: flex; flex-direction:column; } .flex{ background:blue; flex:1; } .flex-child{ background:red; height:100%; width:100%; display:block; } .static{ background:green; width:100%; height:5rem; } 这是CodePen。 我想要它,红色的.flex-child填充蓝色的.flex 。 为什么不height:100%工作?

将UILabel高度调整为文本

我有一些标签,我想调整他们的高度的文字,这是我现在写的代码 func heightForView(text:String, font:UIFont, width:CGFloat) -> CGFloat{ let label:UILabel = UILabel(frame: CGRectMake(0, 0, width, CGFloat.max)) label.numberOfLines = 0 label.lineBreakMode = NSLineBreakMode.ByWordWrapping label.font = font label.text = text label.sizeToFit() return label.frame.height } 编辑: 这个问题不在一段代码中,所以我的问题本身就是一个问题。 它可能对别人有用!

dynamic更改UITableView高度

我想改变我的tableview从另一个viewcontroller的高度基于其单元格的高度,因为它们是dynamic的。 这是否可能? 谢谢 加上: 我基本上有一个UserProfileViewController在屏幕的一半上有一个containerview。 在那里我添加了不同的其他视图控制器: 在墙上的button,这是我如何添加视图控制器和它的后续tableview: – (IBAction)wallButtonPressed:(id)sender { //Check if there is an instance of the viewcontroller we want to display. If not make one and set it's tableview frame to the container's view bounds if(!_userWallViewController) { self.userWallViewController = [[WallViewController alloc] init]; // self.userWallViewController.activityFeedTableView.frame = self.containerView.bounds; } [self.userWallViewController.containerView addSubview:self.userWallViewController.activityFeedTableView]; //If the currentviewcontroller adn […]