answersLogoWhite

0


Best Answer

You would need to know how CSS works on HTML. CSS can remove the original style and replace it with a newer/better one. When using CSS, make sure the layout looks like:

<style>

p{

color: ~;

background: ~;

}

</style>

_____________________________________________________________________________________________________

To edit text properties you need to know some attributes (such as, hight, width, alignment, color, and background). Then you need to know how to use the attributes. Color changes the font's color. Background, well that's easy. Make sure use use the element: <style></style> to make the attributes valid.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you edit text properties in style sheet?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the name of the four ways in which you can apply a style sheet when implementing css with xhtml?

externally &lt;link href="yourstylesheet.css" type="text/css" rel="stylesheet" /&gt; style tags &lt;style&gt; /* put your style properties here*/ &lt;/style&gt; inline &lt;span style=/* put your style properties here*/&gt;This is the HTML element the style effects &lt;/span&gt; perhaps someone else can add the 4th?


What is the HTML tag used to define an internal style sheet?

If you are looking to use an internal style sheet, you are going to need to use the &lt;style&gt; tag. This tag has both an opening and a closing tag and in between the two tags is where you list all of the CSS rules and declarations that you are wanting to include. Internal style sheets are used when the rules you are creating are only needed on the page that you are adding the rules to. If you plan on using the rules on multiple pages, it would be better to use an external style sheet and embed the style sheet on each of the pages. An example of an internal style sheet would look like: &lt;style type="text/css" media="all"&gt; body { background-color: #FFFFFF; } p { text-color: #000000; text-weight: normal; } &lt;/style&gt;


What is property window in visual basic net?

it's a window where you can edit properties of visual basic objects. Like when you want to edit the title of a program window you go to the properties window and then edit the caption option to the title name you want.


What is Class in HTML?

Class refers to your style sheet (Cascading Style Sheets), or the style part of your HTML document. For example, if your document was this... &lt;style&gt; .text { font-family: Arial } &lt;/style&gt; then in your body tag... &lt;div CLASS="text"&gt;Hello&lt;/div&gt; Hello will be in Arial text font type. It refers to your style, whether it be a font type, colour, background, etc.


What are the rules for creating a style sheet?

There are really no rules, just you can't place an attribution for an image into a text element

Related questions

What is the name of the four ways in which you can apply a style sheet when implementing css with xhtml?

externally &lt;link href="yourstylesheet.css" type="text/css" rel="stylesheet" /&gt; style tags &lt;style&gt; /* put your style properties here*/ &lt;/style&gt; inline &lt;span style=/* put your style properties here*/&gt;This is the HTML element the style effects &lt;/span&gt; perhaps someone else can add the 4th?


Write the properties that are present in cascading style sheet?

The properties present are going to be dependent on the web page and the web site and what is being styled. CSS (Cascading Style Sheet) can style everything from the color of the background (background-color: #ffffff;), the color of the text (text-color: #000000;), the font used (font-family:"Times New Roman";) borders (border: 1px solid #333333;) and so much more. The beauty of CSS is that with the same properties you can have radically different presentation of the same content.


What are the proporties that make up style?

Properties of CSS style include text-transform, vertical-align, text-align, text-indent, line-height, word-spacing, letter-spacing and text-decoration. Font properties include font-family, font-style, font-weight and font-size.


How do you edit the 'target' box in a shortcut?

Right-click the icon Select properties There will be a text box next to the word "target." Edit away!


What is the HTML tag used to define an internal style sheet?

If you are looking to use an internal style sheet, you are going to need to use the &lt;style&gt; tag. This tag has both an opening and a closing tag and in between the two tags is where you list all of the CSS rules and declarations that you are wanting to include. Internal style sheets are used when the rules you are creating are only needed on the page that you are adding the rules to. If you plan on using the rules on multiple pages, it would be better to use an external style sheet and embed the style sheet on each of the pages. An example of an internal style sheet would look like: &lt;style type="text/css" media="all"&gt; body { background-color: #FFFFFF; } p { text-color: #000000; text-weight: normal; } &lt;/style&gt;


Difference between embedded style sheet and linked style sheet?

Actually, there is no difference between an embedded style sheet and a linked style sheet. They are exactly the same thing, just different wording to describe the same process. To embed a style sheet into a document, you use the &lt;link /&gt; tag within the &lt;head&gt; tag of an HTML document. An example is: &lt;link rel="stylesheet" href="style.css" type="text/css" /&gt;


What is property window in visual basic net?

it's a window where you can edit properties of visual basic objects. Like when you want to edit the title of a program window you go to the properties window and then edit the caption option to the title name you want.


Explain the procedure of linking a style sheet in HTML document?

To link a style sheet into an HTML document, you will use the &lt;link&gt; tag. This tag links, or embeds, the style sheet into the document. This would look like: &lt;link rel="stylesheet" href="style.css" type="text/css" /&gt; This allows you to use the same style sheet and rules on multiple HTML documents.


What is Class in HTML?

Class refers to your style sheet (Cascading Style Sheets), or the style part of your HTML document. For example, if your document was this... &lt;style&gt; .text { font-family: Arial } &lt;/style&gt; then in your body tag... &lt;div CLASS="text"&gt;Hello&lt;/div&gt; Hello will be in Arial text font type. It refers to your style, whether it be a font type, colour, background, etc.


Why do you text in a work sheet?

why do you text in a work sheet


What are the rules for creating a style sheet?

There are really no rules, just you can't place an attribution for an image into a text element


How do you write the CSS and HTML code for an embedded style sheet that configures a background color of?

&lt;style type="text/css" media=screen&gt; body{ background-color: gray;} &lt;/style&gt;