text_이미지 옆 위치

gye_sori·2023년 3월 31일
0

CSS

목록 보기
1/1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
	img{
		width: 300px; height: 150px;
	}
	#img1{vertical-align: top;}
	#img2{vertical-align: middle;}
	#img3{vertical-align: bottom;}

</style>
</head>
<body>
	<div>
		글자위치
		<img id="img1" alt="" src="img/black.jpg">
	</div>
	<div>
		글자위치
		<img id="img2" alt="" src="img/black.jpg">
	</div>
	<div>
		글자위치
		<img id="img3" alt="" src="img/black.jpg">
	</div>
</body>
</html>
profile
개발_실습_기록(❁´◡`❁)

0개의 댓글