<a>
<abbr>
<acronym>
<address>
<area />
<bdo>
<blockquote>
<body>
<br />
<button>
<caption>
<cite>
<code>
<dd>
<del>
<dfn>
<div>
<dl>
<dt>
<em>
<fieldset>
<form>
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
<head>
<hr />
<html>
<img />
<input />
<ins>
<kbd>
<label>
<legend>
<li>
<link />
<map>
<meta />
<noscript>
<object>
<ol>
<optgroup>
<option>
<p>
<param />
<pre>
<q>
<samp>
<script>
<select>
<span>
<strong>
<style>
<sub>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<title>
<tr>
<ul>
<var>
Il est possible de nommer les balises XHTML via 2 attributs : id et/ou class. Quel est l'interêt ? Pouvoir ensuite appliquer des styles CSS aux balises ainsi nommées ou utiliser javascript pour manipuler la DOM à sa convenance.
<div>
<div>
<div id='peinture'>
</div>
</div>
</div>
#peinture {background-color:#ff0000;}
document.getElementById("peinture").style.width = "100px";
<div class='peinture'>
<div class='peinture'>
<div class='peinture'>
</div>
</div>
</div>
.peinture {background-color:#ff0000;}
2024 © Fabien Branchut