我在页面中有这种css样式:
*{
font: 11px/16px 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
我还有一个ID为sample
和<strong>
标记的div作为其子项。请参阅以下代码:
<div id="sample">
<strong>
Strong tag must be enforce.
</strong>
<div>
如何针对上面的css样式强制执行标记strong
?
答案 0 :(得分:2)
为strong
*{
font: 11px/16px 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
strong {
font-weight: bold;
}
&#13;
<div id="sample">
<strong>
Strong tag must be enforce.
</strong>
<div>
&#13;
或者你可以通过应用内联css样式来实现:
*{
font: 11px/16px 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
&#13;
<div id="sample">
<strong style="font-weight:bold">
Strong tag must be enforce.
</strong>
<div>
&#13;
答案 1 :(得分:1)
只需补充说明:
Toast.makeText(
getApplicationContext(),
"your Location is -\nLat: " + latitude + "\nLong: "
+ longitude, Toast.LENGTH_LONG).show();
简写将速记的可选属性设置为etLatLng.setText("your Location is -\nLat: " + latitude + "\nLong: "
+ longitude);
值,即使未明确指定它们。
https://developer.mozilla.org/en/docs/Web/CSS/font
font
的初始值为initial
。
在您的情况下,星号font-weight
会选择每个元素,并将normal
应用于它们。
答案 2 :(得分:0)
你有两种形式:
*{font: 11px/16px 'Helvetica Neue', Helvetica, Arial, sans-serif;}
#sample strong{
font-weight:bold
}
#sample2 b{
font-weight:bold
}
/**or u can**/
b,
strong{
font-weight:bold
}
<div id="sample">
<strong>
Strong tag must be enforce.
</strong>
<div>
<hr>
<div id="sample2">
<b>
Strong tag must be enforce.
</b>
<div>
答案 3 :(得分:0)
*:not(#sample) {
font: 11px/16px 'Helvetica Neue', Helvetica, Arial, sans-serif;
}