html - Heading tag in css creates new line -


I'm trying to make it some input box in input, but every time I do text style in CSS, Styling closes my input box in "a new line" The first 2 text parts in the image are shaky, and the next 4 does not want to make a new line to my styling texts.

Image:

html part:

  & lt; H0 & gt; Flowers nuen: & lt; / H5> & Lt; Input type = "article" name = "name" & gt; & Lt; Br> & Lt; H0 & gt; E-mail: & lt; / H5> & Lt; Input type = "text" name = "email" & gt; & Lt; Br> & Lt; H5 & gt; Telephone NR: & lt; / H5> & Lt; Input type = "text" name = "tlf" & gt; & Lt; Br> & Lt; H5 & gt; Interlaced person: & lt; / H5> & Lt; Input type = "text" name = "pane" & gt; & Lt; Br> & Lt; H5 & gt; Flytype: & lt; / H5> & Lt; Input type = "article" name = "type" & gt; & Lt; Br> & Lt; H5 & gt; Betalingsform: & lt; / H5> & Lt; Input type = "text" name = "betal" & gt; & Lt; Br>   

and CSS part:

  # H5 font size first: 20px; Color: #ffffff; }   

Title elements by default are block level elements attempt to display Do: Inline

  #four h5 {font-size: 20px; Color: #ffffff; Display: Inline; }   

Inline-block also works.

Bella:

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -