Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 05-24-2006, 02:41 AM
tommyxv tommyxv is offline
 
Join Date: Feb 2005
Posts: 295
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default The BR tag

When I make changes to my template i sometimes use
Code:
<br>
and not
Code:
<br />
What problems will it cause?
Reply With Quote
  #2  
Old 05-24-2006, 07:10 AM
hambil's Avatar
hambil hambil is offline
 
Join Date: Jun 2004
Location: Seattle
Posts: 1,719
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's not well formed. Some browsers and other tools could have problems with it, causing the page not to display properly, or the tool not to work as expected.
Reply With Quote
  #3  
Old 05-24-2006, 07:58 AM
tommyxv tommyxv is offline
 
Join Date: Feb 2005
Posts: 295
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thats what i figured. My footer would be bunched up and be on top of the posts in a thread sometimes in FF. I had a many

Code:
<br> and not <br />
in the footer. I changed them so hopefully it will fix the problem.

Thanks,
Reply With Quote
  #4  
Old 05-24-2006, 12:15 PM
firstrebel's Avatar
firstrebel firstrebel is offline
 
Join Date: Dec 2005
Location: West London
Posts: 380
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Normally most tags need to be closed, such as <p></p>, but the br tag is one of a few that has never need to be closed, that is why most have always used <br>. With things moving on, especially with XHTML you should close all tags, so this should be <br />. It is also a good idea to close all other similar tags by putting a space then /> after the tag name. For example with the img tag -
Code:
<img src="graphics/v8_engine.gif" alt="Animated V8 engine" width="90" height="90" border="0" align="left" />
Bob
Reply With Quote
  #5  
Old 05-24-2006, 12:48 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by firstrebel
Normally most tags need to be closed, such as <p></p>, but the br tag is one of a few that has never need to be closed, that is why most have always used <br>. With things moving on, especially with XHTML you should close all tags, so this should be <br />. It is also a good idea to close all other similar tags by putting a space then /> after the tag name. For example with the img tag -
Code:
<img src="graphics/v8_engine.gif" alt="Animated V8 engine" width="90" height="90" border="0" align="left" />
Bob
Its not normally bob, its in Older versions of HTML tags were abit less well defined.

In HTML 4 and such, not all tags that were opened needed to be closed.

<br> for examle is a prefectly valid tag in html 4, as well as <img src="">

<table>
<tr>
<td>
<td>
<td>
<td>
</tr>
</table>

I believe is valid in html3 and possibly also 4. XHTML came around and it made lots of changes to how things should and should not be done in the code, it was alot of standarization. All tags are lower case, all tags must be opened and closed. Some tags must have additional attirbutes.

So, <br> becomes <br /> and <img src=""> becomes <img src="" alt="" />. Tables get more strict too as well as deprecated.

<table>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>

Not to mention tons of times in less well coded html people would use the <p> tag like it was a br tag and thats also not accectable.
Reply With Quote
  #6  
Old 05-24-2006, 10:40 PM
hambil's Avatar
hambil hambil is offline
 
Join Date: Jun 2004
Location: Seattle
Posts: 1,719
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I hate the space before the />

<br /> just annoys me. I always use <br/>. I have no idea why someone decided the 'standard' was to stick a space in there, and I'd like to find them and do bad things to them.
Reply With Quote
  #7  
Old 05-25-2006, 02:51 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

< start tag
br start tag type
spacing
/> end tag, if there is no space its not valid as the tag is recognized as br/ not br
Reply With Quote
  #8  
Old 05-25-2006, 02:56 AM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<br> is HTML and <br /> is XHTML.

vBulletin is set to use XHTML Transitional by default, so to keep things consistent, use <br />.
Reply With Quote
  #9  
Old 05-25-2006, 03:55 AM
tommyxv tommyxv is offline
 
Join Date: Feb 2005
Posts: 295
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had a few <hr>'s too. Changed them to <hr />.

Will I get pages not displaying correctly if my <img src=""> tags are not <img src="" alt="" /> ???
Reply With Quote
  #10  
Old 05-25-2006, 03:59 AM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very unlikely, but you should change them...
If you go to find/replace in templates, I think that was one of the regex examples (change img tag). This might save you some work.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:42 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08690 seconds
  • Memory Usage 2,258KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (5)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete