<!DOCTYPE html>
<html>
<head>
<style>
.nav {
background-color: yellow;
list-style-type: none;
text-align: center;
margin: 0;
padding: 0;
}
.nav li {
display: inline-block;
font-size: 20px;
padding: 20px;
}
</style>
</head>
<body>
<h1>Horizontal Navigation Links</h1>
<p>By default, list items are displayed vertically. In this example we use display: inline-block to display them horizontally (side by side).</p>
<p>Note: If you resize the browser window, the links will automatically break when it becomes too crowded.</p>
<ul class="nav">
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#clients">Our Clients</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</body>
</html>
[자바스크립트]팝업창 오늘 그만 보기 구현하기 (0) | 2023.01.31 |
---|---|
css 애니메이션 효과 코드 텍스트 애니메이션 효과 넣는법 (0) | 2023.01.31 |
css 요소 가운데 정렬 (0) | 2018.12.10 |
능력 있는 개발자들의 7가지 태도 (0) | 2018.03.05 |
좋은 프로그래머가 되는 24가지 방법 (0) | 2018.02.14 |
댓글 영역