Skip to content

Instantly share code, notes, and snippets.

@BenFausch
Created December 18, 2018 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenFausch/84a3f38b35679f499edf83d867efba3a to your computer and use it in GitHub Desktop.
Save BenFausch/84a3f38b35679f499edf83d867efba3a to your computer and use it in GitHub Desktop.
50% div side by side
<!--white-space:nowrap will force divs to ignore whitespace with inline-block, be sure to reset whitespace to normal on the
child elements to keep formattting correct-->
<div style="width:100%; white-space:nowrap;">
<div style="width:50%; display:inline-block; white-space:normal">HOlA</div>
<div style="width:50%; display:inline-block; white-space:normal">MUCHACHO</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment