html - Style a definitition list as simple key value set -
I want to use a definition list such as: & lt; Dl & gt; ; & Lt; DT & gt; Name: & lt; / Dt & gt; & Lt; Dd & gt; Tomas & lt; / Dd> & Lt; DT & gt; Address: & lt; / Dt & gt; & Lt; Dd & gt; This is a very long wrapping address & lt; / Dd> & Lt; DT & gt; Age: & lt; DT & gt; & Lt; Dd & gt; 29 & lt; / Dd> & Lt; DL & gt; To render something like this: Name: Tomas address: This is a very long wrapping address age: 29 Looks meaningfully the best option in definition list. Using the new run-in display style would be the trick: & lt; Style & gt; DT {display: run-in; } & Lt; / Style & gt; but it is not yet widely supported. How can I change my definition list to better cross-browser support (i.e. not necessarily 6), without changing html Currently I use Inline Display and add ugly bricks)? To clarify edit: dt {clear: left; } Dd {float: left; } w...