我已經提到了這個question,但它有助於我。我試圖改變span標籤高度和寬度內的圖像標籤,但它不工作,這是我的代碼:無法更改圖像標記內的跨度高度和寬度
HTML
<img class="profile_pic" alt="Sumanth Jois" src="file/someimage">
<span class="changePicture">HelloThere</span>
</img>
的CSS
//There are many spans so I am using the . operator to specify
span.changePicture{
width: 100px;
height:200px;
background-color:red;
margin-left: -150px;
color: white;
margin-top: -20px;
}
我我無法使用此代碼更改寬度和高度。我知道我可以如何解決這個問題嗎?
THANKYOU
可能重複[高度和寬度是否不適用於跨度?]( http://stackoverflow.com/questions/2491068/does-height-and-width-not-apply-to-span) –
''?必須是這樣的''你不能在裏面添加html – winresh24
瀏覽器不會在'img'中嵌套'span',因爲'img'不能是父類。瀏覽器會把它放在'img'下面,而忽略/刪除'' – 4castle