Jump to content

How to remove these marks?


pawelwch

Recommended Posts

It looks like you have doubled up on the closing brackets in your input tag:

<input type="text" name="mytext"/>
<input type="text" name="moretext"/> />

The browser will take anything outside of the tag as text to display.

 

 

 

In html 5, there's no need to use the slash at the end of self closing tags, a simple:

<input type="text" name="mytext">

without the slash is o.k., unless you have a specific need for older html.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.