apparament on peut utiliser une balise XMP ouvrante et fermante. Elle fonctionne bien, et elle a l'avantage d'être suffisement distinct de toutes les autres (<code> comprise)
<!DOCTYPE html>
<html>
<head>
<title>Exemple de page pour afficher un source HTML</title>
</head>
<body>
<div class="body">
<h1>CSS3 Exclusions Sample</h1>
<div class="container">
<div class="exclusion">
Exclusion positioned at row 2, column 2.
</div>
<div class="dummy_text">
<p>Lorem ipsum dolor sit amet...</p>
</div>
</div>
</div>
<xmp><html>
<head>
<title>Le Source</title>
<style type="text/css">
.container {
font-size: small;
width: 98%;
height: 100%;
display: -ms-grid;
-ms-grid-columns: 1fr 1fr 1fr;
-ms-grid-rows: 1fr 1fr 1fr;
}
.exclusion {
-ms-grid-row: 2;
-ms-grid-column: 2;
background-color: lime;
-ms-wrap-flow: both;
padding: 10px;
-ms-wrap-margin: 15px;
}
.dummy_text {
-ms-grid-row: 1;
-ms-grid-column: 1;
-ms-grid-column-span: 3;
-ms-grid-row-span: 3;
}
</style>
</head>
<body>
<div class="body">
<h1>CSS3 Exclusions Sample</h1>
<div class="container">
<div class="exclusion">
Exclusion positioned at row 2, column 2.
</div>
<div class="dummy_text">
<p>Lorem ipsum dolor sit amet...</p>
</div>
</div>
</div>
</body>
</html>
</xmp></body>
</html>
un inconvengnant évident, c'est qu'aucun formatage n'est possible entre celles-ci!
info touvée ici: http://www.commentcamarche.net/for [...] ompte-html
Message édité par InternetDev le 17-02-2013 à 03:56:53