Adv

‘HTML5 reversed’ címkét tartalmazó cikkek

English Version!

Többen jeleztétek, hogy a listák és az ahhoz kapcsolódó változások kimaradtak az eddigiekből. Ezzel a cikkel szeretném ezt az űrt megszüntetni. Véleményem szerint itt kevesebb változás történt a HTML4-hez képest. Szinte teljesen hasonlóan hozhatóak létre számozott (<ol> … <li>) és számozatlan (<ul>…<li>) listák, vagy esetleg  vegyes listák.

A HTML nyelvben eddig is volt lehetőségünk listák készítésére, nézzünk erre egy egyszerű példát.

Számozatlan lista felépítése:

<ul>
	<li>Budapest</li>
	<li>Pécs</li>
</ul>
 

szamozatlan

Tovább olvasom »

Hungarian Version!

More of You have indicated, that the lists and the changes of the lists have been out of the articles so far. Now I would like to dissolve this gap. In my opinion there are less changes that happened according to HTML4.
You can make lists (ordered: (<ol> … <li>) or unordered (<ul>…<li>) or mixed lists (ordered and unordered) in a similar manner. So far we had opportunity to create lists in html aswell so let’s see an example for this:

The build-up of an unordered list:

<ul>
<li>Budapest</li>
<li>Pécs</li>
</ul>

The build-up of an ordered list:

<ol>
 <li>Budapest</li>
 <li>Pécs</li>
</ol>

Tovább olvasom »