answersLogoWhite

0

Bgcolor:- only colours the background

Background:-Applies a picture in the background

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is bgcolor in php?

bgcolor is background color.


How do you put color on background for websites?

This is the HTML tag: <body bgcolor="green"> or you can use codes <body bgcolor="#00FF00">


What is the correct HTML for inserting a background color?

It is done with the bgcolor attribute. For example, to set a blue background for the whole web page, you would use it in the BODY tag, like this: <body bgcolor="blue">


What is a HTML code for a background on tinierme?

If for an image: <body background="images/background.jpg"> or if for a color: <body bgcolor="#000000">


What is bgcolor?

bg color is the abbreviation of background color there is a command used in HTML which set the background color which u want


What tag can set the background color for your page?

The BODY tag is the one you should reference if you want to set the background color of the entire webpage, using the bgcolor attribute. For example: <body bgcolor="Blue"> This should be done using CSS. In an internal or external sheet, you want a rule similar to the following: body {background-color: #ff00ff;} If you insist on doing it inline (for whatever reason) you want to attach the STYLE attribute to the BODY tag directly, and use the same rule. <body style="background-color:#f0f;">


What tag you used for background color OLIVE?

body bgcolor="#E6E6FA"and close the entire tag in < and >.


What is the code for a black background on notepad?

&lt;body bgcolor="Black"&gt;&lt;p&gt; Your text here&lt;/p&gt; &lt;/body&gt;


How long is a wheelbase of the 2009 dodge challenger?

{| ! bgcolor="#D6E9F9" | Challenger SRT8 ! bgcolor="#D6E9F9" | Charger SRT8 ! bgcolor="#D6E9F9" | 1970 Challenger | 0-60 (SRT8) ! bgcolor="#FFFFFF" | low 5 seconds ! bgcolor="#FFFFFF" | low 5 seconds ! bgcolor="#FFFFFF" | n/a | Horsepower/Torque ! bgcolor="#FFFFFF" | 425/420 ! bgcolor="#FFFFFF" | 425/420 ! bgcolor="#FFFFFF" | 425/490 | Depends on the version.Everything you ever wanted to know about the Dodge Challenger is at:http://www.newchallengerstore.com/Challenger_Specs_and_Info_Page_1a.htm courtesy of www.NewChallengerStore.com |}


Can you use more than one bgcolor on a layout?

The quick answer is no you may not use more than one background colour in a layout using the body bgcolor code. You can how ever get around this by using a photo as your background. The photo can be a large photo with anything on it that you like. The photo can be really small that just repeats its pattern throughout the page.


What is an attribute and value to an HTML tag?

A tag can have an additional setting in it. This is an attribute. The attributes can then be given values. For example the body tag has an attribute to set the background colour of the page. The attribute is bgcolor. What colour you specify is the value, in this case it is red: &lt;body bgcolor="Red"&gt;


Can you write somthing near the body in the HTML?

Your content goes between the body tags, so what ever you want to happen to the page must be within the body, however if you want to change the background color, then you have to enter the body...: &lt;body bgcolor="choose your colour"&gt; OR to add a background image &lt;body background="insert img source here"&gt;