我有一個跨度類,我試圖將H1定位到樣式中,但是它不起作用。無法在跨度類中定位h1
這是我的html。
<div class="col-md-9">
<span class="testimonial"><h1>Testimonial</h1></span>
</div>
和我的CSS
.testimonial h1 {
font-size: 16px;
font-weight:bold;
}
我不能正確使用CSS?
我有一個跨度類,我試圖將H1定位到樣式中,但是它不起作用。無法在跨度類中定位h1
這是我的html。
<div class="col-md-9">
<span class="testimonial"><h1>Testimonial</h1></span>
</div>
和我的CSS
.testimonial h1 {
font-size: 16px;
font-weight:bold;
}
我不能正確使用CSS?
試試這個:
.col-md-9 .testimonial h1 {
font-size: 16px;
font-weight:bold;
}
可能是一個專一的問題你試過:
div.col-md-9>span.testimonial>h1 {
font-size: 16px;
font-weight:bold;
}
你所鏈接精細css文件?
它的工作對我來說,這正是你的代碼:
<html>
<head>
<style type="text/css">
.testimonial h1 {
font-size: 16px; font-weight:bold;
}
</style>
</head>
<body>
<div class="col-md-9">
<span class="testimonial">
<h1>Testimonial</h1>
</span>
</div>
</body>
</html>
它正常工作,給我..你能解釋一下也不行? http://jsfiddle.net/6rL1tsed/你可以使用檢查元素,看看有什麼問題.. – 2014-10-30 15:26:43
應該工作得很好..:http://jsfiddle.net/bfgrebgc/ – Refilon 2014-10-30 15:26:51
這是正確的。也許在其他部分有衝突 – pms 2014-10-30 15:27:01