Tag: 宽度

真的不可能让一个div适合其内容大小?

我想澄清一下,根据内容的大小,是否可以使div适合其大小,而不必使元素浮动或不必使其位置绝对化。 可能吗?

如何获得svg:g元素的宽度

我目前正在使用JavaScript中的svg元素。 而我对这个是新的。 我的问题是,我有一个svg元素,我有多个svg:g元素。 在我的svg:g元素中,我还有其他的svg元素。 <svg> <g class="my-class"> <g class "c1"> <text style="font-size: 9" x="0" y="-4"> john </text> <text style="font-size: 9" x="70" y="-4"> 13 </text> </g> <g class="c2"> <text style="font-size: 9" x="0" y="-4"> john </text> <text style="font-size: 9" x="70" y="-4"> 13 </text> </g> <g class="c3"> <text style="font-size: 9" x="0" y="-4"> john </text> <text style="font-size: 9" x="70" […]

如何在WPF中设置宽度为100%

有什么办法如何告诉组件在WPF中占用100%的可用空间? 喜欢 width: 100%; 在CSS中 我有这个XAML,我不知道如何强制Grid达到100%的宽度。 <ListBox Name="lstConnections"> <ListBox.ItemTemplate> <DataTemplate> <Grid Background="LightPink"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="Auto"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <TextBlock Grid.Row="0" Grid.Column="0" Text="{Binding Path=User}" Margin="4"></TextBlock> <TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding Path=Password}" Margin="4"></TextBlock> <TextBlock Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Text="{Binding Path=Host}" Margin="4"></TextBlock> </Grid> </DataTemplate> </ListBox.ItemTemplate> </ListBox> 结果看起来像 替代文字http://foto.darth.cz/pictures/wpf_width.jpg 我做了粉红色,所以很明显需要多less空间。 我需要使粉红色的网格100%的宽度。

Bootstrap元素100%宽度

我想创build100%交替的彩色块。 一个“理想”的情况是作为一个附件,以及目前的情况。 期望的设置: 目前: 我的第一个想法是创build一个div类,给它一个背景颜色,并给它100%的宽度。 .block { width: 100%; background: #fff; } 但是,你可以看到这显然不起作用。 它仅限于一个集装箱区域。 我试图closures容器,也没有工作。

在ViewGroup上设置最大宽度

如何设置ViewGroup的最大宽度? 我正在使用一个Theme.Dialog活动,但是,当调整到更大的屏幕时,这看起来不太好,它也是轻量级的,我不希望它占据整个屏幕。 我试过这个build议无济于事。 此外,没有像某些视图的android:maxWidth属性。 有没有办法限制根LinearLayout,以便它只是(例如)640浸? 我愿意为此更换为另一个ViewGroup。 有什么build议么?

如何获得没有(减号)滚动条的屏幕宽度?

我有一个元素,需要它的宽度没有(!)垂直滚动条。 Firebug告诉我身体宽度是1280px。 这些在Firefox中都可以正常工作: console.log($('.element').outerWidth() ); console.log($('.element').outerWidth(true) ); $detour = $('.child-of-element').offsetParent(); console.log( $detour.innerWidth() ); 他们都返回1263px ,这是我正在寻找的价值。 但所有其他浏览器给我1280px 。 是否有跨浏览器的方式来获得全屏宽度没有(!)垂直滚动条?

根据字符设置TextView的宽度

真的找这个答案 。 想要根据数字或字符设置TextView的宽度。 所以如果我想要它总是3个字符宽,我可以设置它,它会根据textSize设置进行调整。 没有这个,我必须设置一个宽度为50dip或者什么的,根据字体的大小可能会也可能不会。

使用jQuery设置宽度的百分比

我如何使用jQuery设置di​​v的宽度为百分比?

带宽度的CSSinput:100%超出父母的界限

我试图做一个login表单,由两个input字段组成,内部填充,但是这两个字段总是最终超出了父母的界限; 该问题源自添加的内嵌填充。 可以做些什么来纠正这个问题呢? JSFiddle片段: http : //jsfiddle.net/4x2KP/ 注意:代码可能不是最干净的。 例如,封装文本input的span元素可能根本就不需要。 HTML: <div id="mainContainer"> <div id="login" class="loginForm"> <div class="login-top"> </div> <form class="login-fields" onsubmit="alert('test'); return false;"> <div id="login-email" class="login-field"> <label for="email" style="-moz-user-select: none;-webkit-user-select: none;" onselectstart="return false;">E-mail address</label> <span><input name="email" id="email" type="text"></input></span> </div> <div class="spacer"></div> <div id="login-password" class="login-field"> <label for="password" style="-moz-user-select: none;-webkit-user-select: none;" onselectstart="return false;">Password</label> <span><input name="password" id="password" type="password"></input></span> […]

setWidth(int pixels)使用dip还是px?

setWidth(int pixels)是否使用与设备无关的像素或物理像素作为单位? 例如,setWidth(100)将视图的宽度设置为100倾斜或100像素? 谢谢。