Could anyone tell me what <span class="v"> means? I know it's a stupid question, but I don't know much javascript. jazzee
Currently employed as a Web Site Administrator.
In the process of creating my own Web design business.
In a sense, <span class="v"> means whatever you want it to mean, depending on what properties you've given to class "v". I could go into detail here, but your question is so basic that I think you need some background first.
(the world wide consortium website). And to further describe <span class="v">:
<span> is what is called a block tag. You surround a piece of text, some images, whatever, with <span> and </span>, and anything contained within has a particular style applied to it. This is where the class="v" comes in. With css (Cascading Style Sheets), you can create a list of styles containing font, color, position and visibility definitions for your page content. One of the popular ways to organize these definitions is a class. So when you have <span class="v">, everything between that and </span> could potentially have a 10 point purple arial font, be right justified, aligned to the bottom of the screen and underlined.
Hope this makes some sense. As rycamor stated, it's not Javascript, so this post may be out of line. But if it helps, it helps.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.