Side by side paragraph

Solved
GossBow Posted messages 59 Status Member -  
GossBow Posted messages 59 Status Member -
Hello,

so actually I would like to place two paragraphs side by side without
it automatically going to a new line. Here’s what my code should look like:

<p>first text</p> <p>second text</p>

and I want it to
look like this

first text second text

or at least a way to achieve this layout

thank you best regards GossBow

Configuration: iPhone / Safari 4.0

3 answers

  1. inspiring Posted messages 1936 Status Member 265
     
    ```html <style> .conteneur {overflow:hidden;} .colp {width:50%; float:left; display:inline} </style>

    ici le contenu de gauche

    ici le contenu de droite

    ```
    13
    1. GossBow Posted messages 59 Status Member 5
       
      Ah that's great, thank you it works =)
      0