๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

๐Ÿš€ ์ž๋ฐ” ์Šคํฌ๋ฆฝํŠธ JavaScript

9๏ธโƒฃ ์ž๋ฐ” ์Šคํฌ๋ฆฝํŠธ - CSS๋ฅผ ์ ์šฉ์‹œํ‚ค๋Š” ๋ฒ„ํŠผํ•จ์ˆ˜

by Meteora_ 2021. 3. 3.
728x90
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

<div id="demo" style="background-color: ">Hello JS CSS</div>

<button type="button" onclick="func()">์ ์šฉ</button>

<script type="text/javascript">

function func() {
	let obj = document.getElementById("demo"); //object์ „์ฒด๋ฅผ ๊ฐ–๊ณ ์˜ด .HTML์‹œ ๋ฌธ์žฅ๋งŒ๊ฐ€์ ธ์˜ด
	
	obj.style.color = "white";
	obj.style.backgroundColor = "green";
	obj.style.textAlign = "center";
	obj.style.borderStyle = "double";
	obj.style.borderColor = "red";
	obj.style.fontFamily = "MS PGothic";
	obj.style.fontStyle = "italic";
	obj.style.fontSize = "24pt";
}

</script>

</body>
</html>

๋Œ“๊ธ€