标签: width

我不理解python中pprint中的width字段

我不明白这个概念.有人可以给我一些例子来展示python中pprint的宽度概念吗?

python width concept pprint

3
推荐指数
1
解决办法
1078
查看次数

将 div 拉伸到全宽(如果有空间)

我目前正在研究 tumblr 主题,但卡在页面导航上。“上一个”和“下一个”按钮的 html 或仅呈现(如果可用)。所以第一页上没有下一个按钮,最后一页上没有上一个按钮。这就是我希望相应的单个按钮拉伸到 100% 宽度的地方。我可以在 javascript 中做到这一点,但它根本不是一个选项,因为模板也可以在没有 javascript 的情况下工作。

html 看起来像这样:

<div id="navigation">
<a href="#" id="prev" style="width:476px; float:left;" class="button_normal"><p>Prev</p></a>
<a href="#" id="next" style="width:476px; float:right;"class="button_normal"><p>Next</p></a>
</div>
Run Code Online (Sandbox Code Playgroud)

CSS:

.button_normal {
text-align: center;
opacity: 0.55;
height: 30px;
line-height: 30px;
background: white;
font-size: 13px;
font-weight: 100;
color: #646464;
border: 1px solid #646464;
text-decoration: none;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
margin-bottom: 10px;
}

#navigation{
clear: both;
width: 100%;
}
Run Code Online (Sandbox Code Playgroud)

父 div 的宽度是 960px,所以两个按钮之间应该有 8px 的边距。我尝试用 min-width 和 width: 100% auto 修复它;但无法真正弄清楚如何制作它。

提前致谢。

html css width css-float

3
推荐指数
2
解决办法
2万
查看次数

如何使用 TIMESTAMP 数据类型减少 Oracle (SQL Plus) 中的列宽?

在 SQL Plus 输出中,它占用的空间比它需要的多得多,我想将它从 50 个字符减少到 20 个字符。

sql oracle timestamp sqlplus width

3
推荐指数
1
解决办法
1万
查看次数

如何在jquery中以百分比设置宽度

jQuery(function() {
    jQuery('#allinone_contentSlider_common').allinone_contentSlider({
        skin: 'common',
        width:1000,
        height: 1000,
        autoHideBottomNav:false,
        showPreviewThumbs:false,
        autoHideNavArrows:false,
        thumbsWrapperMarginBottom:-50
    });     
});
Run Code Online (Sandbox Code Playgroud)

我将此代码用于我的完整页面滑块,我想旋转带有徽标和 mwnues 的整个页面,在此代码中,我有固定的高度和宽度,我不想将其固定,我想要 100%。

在这段代码中,我想设置我的页面 100 的宽度,这里的高度和宽度是固定的,所以请给我任何建议,我该如何解决这个问题

html css jquery width

3
推荐指数
1
解决办法
2万
查看次数

根据其内容的宽度调整标签宽度

我正在使用代码编辑器,并希望随着数字的增加自动调整标签的宽度。例如,对于 1-9(1 位数字),有一个特定的宽度。然后当它达到 10-99(2 位数)时,标签的宽度增加。然后又是 100-999(3 位数)等。

结果应该是这样的:

在此处输入图片说明

这是我的代码:

private void timer_countline_Tick(object sender, EventArgs e)
{
    updateNumberLabel();
}

private void updateNumberLabel()
{
    // we get index of first visible char and number of first visible line
    Point pos = new Point(0, 0);
    int firstIndex = rtb.GetCharIndexFromPosition(pos);
    int firstLine = rtb.GetLineFromCharIndex(firstIndex);

    // now we get index of last visible char and number of last visible line
    pos.X = ClientRectangle.Width;
    pos.Y = ClientRectangle.Height;
    int lastIndex = rtb.GetCharIndexFromPosition(pos);
    int lastLine = rtb.GetLineFromCharIndex(lastIndex);

    // …
Run Code Online (Sandbox Code Playgroud)

c# label width winforms

3
推荐指数
1
解决办法
8449
查看次数

BIRT:如何在调整单元格宽度时自动调整最后一列的宽度

我目前正在处理一份需要最右边的列对齐的报告。

我发现了一份报告,我想复制其中的行为,其中当我调整整个组的单元格宽度时,其中的最后一列单元格也会调整。

我尝试比较这两个报告的属性以了解要调整的正确值,但没有运气。

下面是它们的样子:

当我调整单元格宽度时,我应该怎么做才能使单元格内表格中的最后一列自动调整?

报告 1(正确行为):

调整单元格宽度也会调整 **Amount** 列的宽度

报告 2(不正确的行为):

调整单元格宽度不会调整 **Amount** 列的宽度

birt cell width adjustment

3
推荐指数
1
解决办法
1万
查看次数

JavaFX:自定义网格窗格中的按钮宽度

我想在网格窗格中具有相等(最大)宽度的按钮。

当我试图直接在 FXML 中设置它时 - 它完美地工作。

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.*?>
<AnchorPane xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
            fx:controller="TestController">
    <children>
        <GridPane AnchorPane.leftAnchor="0" AnchorPane.rightAnchor="0" AnchorPane.bottomAnchor="0"
                  AnchorPane.topAnchor="0">
            <columnConstraints>
                <ColumnConstraints hgrow="SOMETIMES" percentWidth="50.0"/>
                <ColumnConstraints hgrow="SOMETIMES" percentWidth="50.0"/>
            </columnConstraints>
            <children>
                <Button maxWidth="Infinity" text="Button1" GridPane.columnIndex="0"/>
                <Button maxWidth="Infinity" text="Button2" GridPane.columnIndex="1"/>
            </children>

        </GridPane>
    </children>
</AnchorPane>
Run Code Online (Sandbox Code Playgroud)

但是当我想将整个网格分成一个自定义控件时,按钮停止填充可用宽度。

这是一个 FXML:

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.*?>
<?import CustomGridPane?>
<AnchorPane xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
            fx:controller="TestController">
    <children>
        <CustomGridPane AnchorPane.leftAnchor="0" AnchorPane.rightAnchor="0" AnchorPane.bottomAnchor="0" AnchorPane.topAnchor="0">
        </CustomGridPane>
    </children>
</AnchorPane>
Run Code Online (Sandbox Code Playgroud)

还有一个扩展:

public class CustomGridPane extends GridPane {

    private Button button1 = new Button("button1"); …
Run Code Online (Sandbox Code Playgroud)

javafx button custom-controls width gridpane

3
推荐指数
1
解决办法
5925
查看次数

ios/xcode:设置按钮的可见宽度

这应该很简单,但是我在设置故事板中带有占位符的文本字段和/或按钮的宽度时遇到了麻烦,以便它在模拟器中看起来正确..

我已将宽度设置为 200。它看起来在故事板中找到,但是,当我构建和运行时,文本字段会缩小到占位符的大小。

在按钮的情况下,我还将宽度设置为 200,但按钮​​缩小到标签的大小。

我做错了什么?

xcode width ios

3
推荐指数
1
解决办法
3222
查看次数

如何使背景标题图像扩展到浏览器的全宽

仍在学习 CSS 的工作原理。目前,我正在尝试使背景图像覆盖整个标题,而顶部/右侧/左侧没有任何间隙。

我尝试了其他几个选项,但似乎无法移动此图像。

(即添加 html 但我想将其与该文件分开。我也尝试将边距设为 0)

<!--EXAMPLE1-->
.splash_img {
background-repeat:no-repeat;
background-position: center top;
display:block;
margin:0px auto; 
}

<!--EXAMPLE2-->
.splash_img:{   
background-image:url("Images/bakemock.jpg") no-repeat center;
background-size:100% 100%; 
height:630px; 
} 
Run Code Online (Sandbox Code Playgroud)

它继续停留在浏览器的右上角。目前这就是我所拥有的。

<head> 
    <div class="splash_img">
        <img src="Images/bakemock.jpg" alt="bake"/>
    </div>
</head>

.splash_img:{   
background-image:url("Images/bakemock.jpg") no-repeat center;
background-size:100% 100%; 
height:630px;
}
Run Code Online (Sandbox Code Playgroud)

html css image header width

3
推荐指数
1
解决办法
2万
查看次数

浮动 div 宽度的 MPDF 问题

我有一个问题,我正在努力用 MPDF6 解决

我有一个使用 codeigniter 创建的 Web 应用程序,它显示问卷调查的结果。

我在 html 中生成了简单的堆积条形图,并使用 jquery 将条形动画设置为它们的最终大小。工作正常,没有问题。

我希望能够在 MPDF 中复制结果,因此使用相同的 div 理论并相应地调整它们的大小,但是这次我使用 php 将宽度设置为内联样式,并且在大多数情况下,我可以正常工作,但是,如果值 = 1,则由于某种原因 mpdf 变得时髦,请参见下面的示例图像;

MPDF 问题示例

这是我的 mpdf 报告的 php 标记示例

<div class='survey'>
            <?php $nw = 390; $w = 400; $tot=0; $totpos=0; $score=0; $cat=0; foreach ($categories as $c) : ?>
            <p class='left question'><?php echo $c->category_name; ?></p>
            <p class='left perc'><?php echo number_format($summaryAnswers[$cat][6],1); ?>%</p>
            <p class='left perc'><?php echo number_format($summaryAnswers[$cat][7],2); ?></p>
            <div  style='width: <?php echo $w; ?>px;'  class='left chart'>
                <?php if ($summaryAnswers[$cat][0] > …
Run Code Online (Sandbox Code Playgroud)

html width mpdf

3
推荐指数
1
解决办法
8363
查看次数