我想在我的主回购的github问题中引用其他repos(在本例中是子模块)中的提交.是否可以这样做而不用类似于github如何从提交号创建缩短的超链接的方式键入完整的超链接?
以下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).我不确定我做错了什么.救命?