recherche
  • Se connecter
  • S'inscrire
Réinitialisation du mot de passe réussie

Suivez les projets qui vous intéressent et découvrez les dernières actualités les concernant.

Dictionnaire de programmation

Manuel technique en ligne pour les programmeurs de service
Recherches populaires:
Style actif d'amorçage Instructions d'utilisation détaillées

Style actif d'amorçage

Traduction chinoise mises à jour récentes: 2018-06-13 10:18:22

actif

Anglais [ˈæktɪv] US [ˈæktɪv]

adj. Actif, actif, vif; rapide, efficace, fonctionnel

n.

Style actif d'amorçage syntaxe

Fonction : Appliquer la couleur survolée à la ligne ou à la cellule

Style actif d'amorçage exemple

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8"> 
	<title>php中文网(php.cn)</title>
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">  
	<script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
	<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
	
<div class="container">
	<h2>表格</h2>
	<p> .active 类将悬停的颜色应用在行或者单元格上:</p>                                        
	<table class="table">
		<thead>
			<tr>
				<th>#</th>
				<th>Firstname</th>
			</tr>
		</thead>
		<tbody>
			<tr class="active">
				<td>1</td>
				<td>Anna</td>
			</tr>
			<tr>
				<td>2</td>
				<td>Debbie</td>
			</tr>
			<tr>
				<td>3</td>
				<td>John</td>
			</tr>
		</tbody>
	</table>
</div>

</body>
</html>
Exécuter l'instance »

Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne

Style actif d'amorçage