これはコードです。どんな問題があるのかよく分かりません。だから最初にそこに内部と第2のインラインがあります、それは働いています。インラインCSSは他の画像ではうまく動作しますが、ただ1つ(Capture.png)ではうまく動作しないため、この問題は画像であると思います。CSSの内部スタイルは機能していませんが、インラインが機能しています。どうして?
<!DOCTYPE html>
<html>
<style> <!-- this is where I am adding the internal css -->
body{
padding: 0px;
margin: 0px;
}
.cap{ <!-- this is the class for the image -->
position: absolute;
height:100px;
width:200px;
left:150px;
}
</style>
<body>
<div class="cap"><img src="Capture.png"/></div>
</body>
</html>
But this works!
<div class="cap"><img src="Capture.png" style=" position: absolute;
height:100px;
width:200px;
left:150px;"/></div>
喜喜@Onel Harrison - 私は既にこのソリューションを掲載しています。 – gavgrif