answersLogoWhite

0


Best Answer

Try this:

<span style =" outline: none; box-shadow: 0 0 10px green;">Look, a glowing border! </span>

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can you use css to make a text border glow?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you make border line in html?

You can't make border lines with HTML - you use CSS. &lt;div id="mydiv"&gt;Content&lt;/div&gt; &lt;style type="text/css"&gt; #mydiv {border: solid black 1px;} #mydiv {border: dashed red 1%;} #mydiv {border: none;} &lt;/style&gt;


How make HTML table with CSS xhtml?

&lt;style type="text/css"&gt; .tt { border-colapse:colapse;} /* table style */ .tt td { border:1px solid green; } /* table cell style */ &lt;/style&gt; &lt;table class="tt"&gt; &lt;tr&gt;&lt;td&gt;text&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt;


How do you make multi-coloured text in a css?

nikunj


How do you make text smaller in HTML?

in css - layout font-size: 36;


What is the CSS property color text?

To define the color of the text w/ CSS, it is {color:[color of text];} Ex.: body{color:#0000ff;}


How can one amend border properties in CSS?

It is possible to amend border properties in CSS by understanding the border-syle value codes, border width codes, shorthand codes and border color codes.


How do you indent the first line of a text css?

Use CSS text-indent property. Simple example here: p{ text-indent: 20px; }


How do you apply css code in HTML?

"class" is an attribute of most if not all HTML tags. To apply a CSS class to a tag, simply make the class attribute equal to that CSS class. For example, suppose you have a CSS class called bigRed that makes text large and red. If you want to apply it to a certain text, just put it in a tag surrounding that text. e.g. . . . but my &lt;span class='bigRed' &gt;car&lt;/span&gt; was faster than . . .


What do the effects of CSS look like?

Tags that are styled with CSS defining bold text may look like this. Tags that are styled with CSS defining italicized text may look like this. Tags that are styled with CSS defining text that is strike-through'ed may look like this.


How do you write instead of body the text box in css?

You can write a text box in CSS styles. Just place the text styles to whatever you want in the input tag.


How do you make non underlined links?

The way to make links non underlined is to use the CSS style "text-decoration:none;" There are a few places to add in this CSS. One place is right inside of the &lt;a href tag example &lt;a href="index.html" style="text-decoration:none;"&gt;link&lt;/a&gt; you can also add the style to the header of the page or in a separate .css document.


How do you change the CSS for printing?

Add this: &lt;link rel="stylesheet" href="normalview.css" type="text/css" media="screen" /&gt; &lt;link rel="styleshet" href="printview.css" type="text/css" media="print" /&gt;