기타
셀렉터 selector
알럽유
2024. 4. 3. 16:01
728x90
반응형
https://codingbasics.tistory.com/267
셀렉터 selector
안녕하세요 HTML 요소의 색상 사이즈 마진 패딩 등 모든것 결론: 빈칸만 잘 채우면 모든 원하는대로 변경가능
codingbasics.tistory.com
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h2 id="hello">안녕하세요</h2>
<script>
document.getElementById("hello").innerHTML = "안녕";
document.getElementById('???').???='???';
</script>
</body>
</html>
HTML 요소의 색상 사이즈 마진 패딩 등 모든것
결론: 빈칸만 잘 채우면 모든 원하는대로 변경가능