小编jkc*_*kcl的帖子

交叉引用在github中提交

我想在我的主回购的github问题中引用其他repos(在本例中是子模块)中的提交.是否可以这样做而不用类似于github如何从提交号创建缩短的超链接的方式键入完整的超链接?

git github

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

CSS表单 - 输入宽度不起作用

以下css:

#contactform {
    width: 400px;
    height: 215px;
}

.webform {
}

.webform input .name {
    width: 50px;
}

.webform input .email {
    width: 70px;
}

.webform input .comments {
    width: 200px;
}
Run Code Online (Sandbox Code Playgroud)

当在html中使用时

    <div id="contactform">
        <div class="webform">
            <input class="name" name="Name" type="text" id="senderName" placeholder="Enter your name here">
            <input class="email" name="Email" type="text" id="senderEmail" placeholder="Enter a valid email adress here">
            <br>
            <input class="comments" name="Comments" type="text" id="senderComments" placeholder="Comments...">
        </div>
    </div>
Run Code Online (Sandbox Code Playgroud)

产生相同宽度的所有三个输入字段(50px =即宽度webform input).我不确定我做错了什么.救命?

css

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

标签 统计

css ×1

git ×1

github ×1