문맥 분류 정보
부트스트랩 문맥 분류본문
문맥 분류
상황 별 클래스를 사용하여 표 행 ( <tr>) 또는 표 셀 ( <td>) 에 색상을 지정할 수 있습니다 .
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Contextual Classes</h2>
<p>Contextual classes can be used to color table rows or table cells. The classes that can be used are: .active, .success, .info, .warning, and .danger.</p>
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Default</td>
<td>Defaultson</td>
<td>*** 개인정보보호를 위한 이메일주소 노출방지 ***</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
사용할 수있는 상황 별 클래스는 다음과 같습니다.
.active 테이블 행 또는 표 셀에 호버 색을 적용합니다.
.success 성공 또는 긍정적 인 행동을 나타냅니다.
.info 중립적 인 정보의 변화 또는 행동을 나타냅니다.
.warning 주의가 필요한 경고를 나타냅니다.
.danger 위험하거나 잠재적 인 부정적인 행동을 나타냅니다.
상황 별 클래스를 사용하여 표 행 ( <tr>) 또는 표 셀 ( <td>) 에 색상을 지정할 수 있습니다 .
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Contextual Classes</h2>
<p>Contextual classes can be used to color table rows or table cells. The classes that can be used are: .active, .success, .info, .warning, and .danger.</p>
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Default</td>
<td>Defaultson</td>
<td>*** 개인정보보호를 위한 이메일주소 노출방지 ***</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
사용할 수있는 상황 별 클래스는 다음과 같습니다.
.active 테이블 행 또는 표 셀에 호버 색을 적용합니다.
.success 성공 또는 긍정적 인 행동을 나타냅니다.
.info 중립적 인 정보의 변화 또는 행동을 나타냅니다.
.warning 주의가 필요한 경고를 나타냅니다.
.danger 위험하거나 잠재적 인 부정적인 행동을 나타냅니다.
추천
0
0
댓글 0개