Side by side paragraph

Solved
GossBow Posted messages 59 Status Membre -  
GossBow Posted messages 59 Status Membre -
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 réponses

inspiring Posted messages 1936 Status Membre 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
GossBow Posted messages 59 Status Membre 5
 
Ah that's great, thank you it works =)
0