- From: <bugzilla@jessica.w3.org>
- Date: Sun, 04 Dec 2011 13:41:19 +0000
- To: public-html-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=15056
Summary: Three suggestions to HTML5
Product: HTML WG
Version: unspecified
Platform: PC
OS/Version: Windows NT
Status: NEW
Severity: normal
Priority: P2
Component: HTML5: The Markup Language (editor: Michael(tm) Smith)
AssignedTo: mike@w3.org
ReportedBy: ian.html@gmail.com
QAContact: public-html-bugzilla@w3.org
CC: public-html-wg-issue-tracking@w3.org,
public-html@w3.org
=== SUGGESTION 1 ===
Wrap dt and dd elements into li elements.
Instead of:
<dl>
<dt></dt>
<dd></dd>
<dt></dt>
<dd></dd>
<dt></dt>
<dd></dd>
</dl>
Make it:
<dl>
<li>
<dt></dt>
<dd></dd>
</li>
<li>
<dt></dt>
<dd></dd>
</li>
<li>
<dt></dt>
<dd></dd>
</li>
</dl>
=== SUGGESTION 2 ===
Deprecate <small></small>, add a more semantic <note></note>.
=== SUGGESTION 3 ===
Add an element which can represent "inline heading". For example:
<ul>
<li><span class="hd">Tel</span>: 123-456-789</li>
<li><span class="hd">Fox</span>: 123-456-789</li>
</ul>
Can we have something like:
<ul>
<li><ihd>Tel</ihd>: 123-456-789</li>
<li><ihd>Fox</ihd>: 123-456-789</li>
</ul>
Kind Regards,
Ian Yang | Front End Web Developer | ian.html@gmail.com
--
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Sunday, 4 December 2011 13:41:27 UTC