Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 기본 표시 값 변경

<시간/>

CSS의 모든 요소에는 기본 표시 값이 있으며 쉽게 변경할 수 있습니다. 이는 display 속성 값을 명시적으로 설정하여 정의됩니다. 가로 메뉴에 대한 인라인 표시 속성 값을 설정하는 예를 살펴보겠습니다. -

예시

<!DOCTYPE html>
<html>
<head>
<style>
p {
   background-color: orange;
   color: white;
}
li {
   display: inline;
}
</style>
</head>
<body>
<h2>Tutorials List</h2>
<p>Following are the list of resources:</p>
<ul>
<li><a href="https://www.tutorialspoint.com/machine_learning/index.htm" target="_blank">Machine Learning</a></li>
<li><a href="https://www.tutorialspoint.com/python_data_science/index.htm" target="_blank">Python Data Science</a></li>
<li><a href="https://www.tutorialspoint.com/python/index.htm" target="_blank">Python</a></li>
<li><a href="https://www.tutorialspoint.com/csharp/index.htm">C#</a></li>
<li><a href="https://www.tutorialspoint.com/artificial_intelligence/index.htm" target="_blank">Artificial Intelligence</a></li>
</ul>
</body>
</html>

출력

CSS를 사용하여 기본 표시 값 변경