嗨,我正在从教程中自学一些骨干,我想使用跨度创建一个类似于显示元素的表格。
所以我在模板的跨度中添加了一个宽度元素。(我知道这不是放置它的最佳位置,但它应该优先于样式表属性,并且只是为了在开发过程中获得一个想法)。
<script type="text/template" id="loadedwith-template">
<span style="width:100" class="library"><%= library.name %></span>
<input style="width:100" class='input' type="text" />
<button class="delete_lw" >delete</button>
</script>
但是,当我在浏览器中查看它时,该元素会像以前一样显示,而没有应用宽度设置。
Chrome 中的“检查元素”显示 width 属性,但被禁用(上面有一行像 html 删除线)。这是元素样式中在计算样式部分之前显示的最后一件事。
还有另一个引用跨度的样式表。是否有任何原因导致宽度被禁用?另一个样式表如下(借自主干教程)。(跨度在列表中)。
a { color: #2929FF; }
a:visited { color: #777; }
a:hover {
color: #8F8FFF;
text-decoration: none;
}
body, button { font: 100%/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif; }
body {
background: #FFF;
color: #444;
padding: 25px 50px;
}
button, .delete, .swap {
border: 0;
border-radius: 5px;
color: #FFF;
cursor: pointer;
font-weight: bold;
line-height: 1;
text-align: center;
text-transform: uppercase;
}
button:hover, .delete:hover, .swap:hover { opacity: 1; }
button {
background: #2929FF;
font-size: 0.75em;
padding: 7px 12px;
opacity: .75;
}
h1 {
font-size: 1.25em;
letter-spacing: -0.5px;
}
p {
color: #777;
font: italic 0.75em/1.2 "Georgia", Palatino, "Times New Roman", Times, serif;
}
span {
display: inline-block;
margin-right: 10px;
}
ul { padding-left: 0; }
.delete, .swap {
font-size: 0.625em;
opacity: .25;
padding: 3px 10px;
position: relative;
top: -3px;
}
.delete { background: #FF29D0; }
.swap { background: #FF6529; }