I have a HTML setup of the following:
<p class="vcard contact" role="contentinfo">
<a class="org url organization-name" href="url" title="organization">organization</a><br>
<span class="fn">name</span><br>
<a class="tel" href="tel:tel">tel</a><br>
<a class="email" href="mailto:email">email</a>
</p>
What CSS would I apply to make this columned? Organization and name on the left and tel and email on the right for example.
I could change the HTML, but I want it to be modular and keep HTML and CSS strictly separated.