Tools, FAQ, Tutorials:
HTML 'span' Tag/Element
What Is a "span" Tag/Element?
✍: FYIcenter.com
A "span" element is an inline element that you can use a container of inline elements and text contents. By default, browsers will do nothing on "span" elements unless specify some CSS properties in them. Here are basic rules about an "span" element:
Here is a tutorial example of "span" elements:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>SPAN Elements</title> </head> <body> <h4>SPAN Elements?</h4> <p>I don't <span>see</span> any <span>SPAN elements</span> in this paragraph. Do you <span>see</span> any <span>SPAN elements</span> here? What is a SPAN element anyway?</p> </body> </html>
If you save the above document as span_elements.html and view it with Internet Explorer, you will see a normal text paragraph. But you not see any signs of "span" elements.
⇒ Changing Fonts a Paragraph with HTML 'span'
⇐ Floating HTML 'div' Elements
2017-03-11, 1432🔥, 0💬
Popular Posts:
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How to search for the first match of a regular expression using re.search()? The re.search() functio...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...