개발자의 길/Web Programming

<HTML> 이미지 스타일(사이즈)

모쿠 2017. 3. 29. 13:32

<이미지 스타일 적용 단계>

- 전체 style을 적용해도 태그에 style을 주면 적용이 안됨



<10_image.html>


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Images</title>
<style>
img {
    width:50px;
}
</style>
</head>
<body>
 
<h1>이미지 사이즈</h1>
<img alt="설현" src="images/seol.jpg" width="300px" />
 
<img alt="설현" src="images/seol.jpg" style="width: 300px" />
 
<!-- 태크에 속성을 주는 것은 style을 입히면 적용이 안됨 -->
</body>
</html>
cs