Ultimele tutoriale de dezvoltare web

HTML aspecte


Site - uri afișa frecvent conținut în mai multe coloane (like a magazine or newspaper) un (like a magazine or newspaper) .


city ​​Gallery

Londra
Paris
Tokyo

Londra

Londra este capitala Angliei. Acesta este cel mai populat oraș din Regatul Unit, cu o zonă metropolitană de peste 13 milioane de locuitori.

În picioare pe râul Tamisa, Londra a fost o așezare majoră pentru două milenii, istoria merge înapoi la fondarea sa de către romani, care a numit Londinium.

Drepturi de autor © w3ii.com

HTML Layout Folosind <div> Elemente

<div> Elementul este adesea folosit ca un instrument de aspect, deoarece acesta poate fi poziționat cu ușurință cu CSS.

Acest exemplu utilizează patru <div> elemente pentru a crea un aspect coloană multiple:

Exemplu

<body>

<div id="header">
<h1>City Gallery</h1>
</div>

<div id="nav">
London<br>
Paris<br>
Tokyo
</div>

<div id="section">
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia,
its history going back to its founding by the Romans, who named it Londinium.</p>
</div>

<div id="footer">
Copyright © w3ii.com
</div>

</body>
Încearcă - l singur »

CSS:

<style>
#header {
    background-color:black;
    color:white;
    text-align:center;
    padding:5px;
}
#nav {
    line-height:30px;
    background-color:#eeeeee;
    height:300px;
    width:100px;
    float:left;
    padding:5px;
}
#section {
    width:350px;
    float:left;
    padding:10px;
}
#footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    padding:5px;
}
</style>

Site-ul Layout Utilizarea HTML5

HTML5 oferă noi elemente semantice care definesc diferite părți ale unei pagini web:

HTML5 semantic Elemente
  • <header> - definește un antet pentru un document sau o secțiune
  • <nav> - definește un container pentru link - uri de navigare
  • <section> - definește o secțiune într - un document
  • <article> - definește un articol autonom independent
  • <aside> - Definește conținut în afară de conținutul (like a sidebar)
  • <footer> - Definește un subsol pentru un document sau o secțiune
  • <details> - Definește detalii suplimentare
  • <summary> - definește un titlu pentru <details> elementul

Acest exemplu utilizează <header> , <nav> , <section> și <footer> pentru a crea un aspect coloană multiple:

Exemplu

<body>

<header>
<h1>City Gallery</h1>
</header>

<nav>
London<br>
Paris<br>
Tokyo
</nav>

<section>
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia,
its history going back to its founding by the Romans, who named it Londinium.</p>
</section>

<footer>
Copyright © w3ii.com
</footer>

</body>
Încearcă - l singur »

CSS:

<style>
header {
    background-color:black;
    color:white;
    text-align:center;
    padding:5px;
}
nav {
    line-height:30px;
    background-color:#eeeeee;
    height:300px;
    width:100px;
    float:left;
    padding:5px;
}
section {
    width:350px;
    float:left;
    padding:10px;
}
footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    padding:5px;
}
</style>

HTML Layout folosind tabele

<table> Elementul nu a fost proiectat pentru a fi un instrument de aspect.
Scopul <table> element este de a afișa date tabelare.

Aspect poate fi realizat cu ajutorul <table> Element, deoarece elementele de masă pot fi stil cu CSS:

Exemplu

<body>

<table class="lamp">
<tr>
  <th>
    <img src="../images/lamp.jpg" alt="Note" style="height:32px;width:32px">
  </th>
  <td>
    The table element was not designed to be a layout tool.
  </td>
</tr>
</table>

</body>
Încearcă - l singur »

CSS:

<style>
table.lamp {
    width:100%;
    border:1px solid #d4d4d4;
}
table.lamp th, td {
    padding:10px;
}
table.lamp th {
    width:40px;
}
</style>

Atenție: Crearea de aspect cu tabele nu este greșit, dar nu este recomandat! Evitați tabele pentru a crea aspect.