HTML CSS putting a unknown tab before element

usersam

I am facing a strange problem. I prepared an html page in jsfiddle and putting same code in one html in below method.

<html>
<style>
   jsfiddle css
</style>
   jsfiddle html code
</html>

my jsfiddle: jsfiddle

having this as test.html and opening in chrome. It shows perfect in jsfiddle but shows an extra tab (or maybe some whitespaces) before the second item ("Comments:") in div. I am not able to figure out the reason. Please help.

nirvana74v

I would suggest you to enhance your code a little to get fields show up they way you desire.

<div class="dtl">
    <div>
         <b>&nbsp;Name:</b><span class="input"><input class="inputtxt" type="text"></span>
    </div>
    <div style="clear:both;"></div>
    <div>
         <b>&nbsp;Comments:</b><span class="input"><input class="inputtxt" type="text"></span>
    </div>
</div>

JSFiddle: JSFiddle

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Move one element before another with css/html

From Dev

Putting html attribute in the output with css?

From Dev

Strip HTML tags before putting them in a database

From Dev

HTML/CSS: unknown region

From Dev

Cover page behind HTML element using CSS ::before

From Dev

CSS triangle :before element

From Dev

Unknown CSS Tab Completion in Sublime Text

From Dev

How does putting @ before Html.Raw work?

From Dev

Make HTML-checkbox into string before putting into form data

From Dev

Make HTML-checkbox into string before putting into form data

From Dev

Putting tab content in the middle

From Dev

Pause css transition on before element

From Dev

Tab Color Issue in HTML and CSS

From Dev

Insert HTML before an element in CKEditor

From Dev

Appending a string before an HTML Element

From Dev

putting a backslash before apostrophe

From Dev

putting a backslash before apostrophe

From Dev

Putting a .MP4 Video as a background using HTML and CSS

From Dev

Putting a .MP4 Video as a background using HTML and CSS

From Dev

Sendgrid System.ArgumentException: Unknown element: html

From Dev

Sendgrid System.ArgumentException: Unknown element: html

From Dev

Unknown element names in HTML, How to fetch?

From Dev

Css pseudo-element ::before(2); :before and ::before

From Dev

How can I insert a whole css class before an HTML element that I find?

From Dev

Shape (line) under a tab element CSS

From Dev

Complex html within bootstrap tab header element

From Dev

Make content before sit on top of an element (like a tab)

From Dev

Is there a more generic way to call JS functions on an HTML element other than putting function calls against each element?

From Dev

CSS, using display:table with before pseudo element

Related Related

  1. 1

    Move one element before another with css/html

  2. 2

    Putting html attribute in the output with css?

  3. 3

    Strip HTML tags before putting them in a database

  4. 4

    HTML/CSS: unknown region

  5. 5

    Cover page behind HTML element using CSS ::before

  6. 6

    CSS triangle :before element

  7. 7

    Unknown CSS Tab Completion in Sublime Text

  8. 8

    How does putting @ before Html.Raw work?

  9. 9

    Make HTML-checkbox into string before putting into form data

  10. 10

    Make HTML-checkbox into string before putting into form data

  11. 11

    Putting tab content in the middle

  12. 12

    Pause css transition on before element

  13. 13

    Tab Color Issue in HTML and CSS

  14. 14

    Insert HTML before an element in CKEditor

  15. 15

    Appending a string before an HTML Element

  16. 16

    putting a backslash before apostrophe

  17. 17

    putting a backslash before apostrophe

  18. 18

    Putting a .MP4 Video as a background using HTML and CSS

  19. 19

    Putting a .MP4 Video as a background using HTML and CSS

  20. 20

    Sendgrid System.ArgumentException: Unknown element: html

  21. 21

    Sendgrid System.ArgumentException: Unknown element: html

  22. 22

    Unknown element names in HTML, How to fetch?

  23. 23

    Css pseudo-element ::before(2); :before and ::before

  24. 24

    How can I insert a whole css class before an HTML element that I find?

  25. 25

    Shape (line) under a tab element CSS

  26. 26

    Complex html within bootstrap tab header element

  27. 27

    Make content before sit on top of an element (like a tab)

  28. 28

    Is there a more generic way to call JS functions on an HTML element other than putting function calls against each element?

  29. 29

    CSS, using display:table with before pseudo element

HotTag

Archive