Tagged Questions
The text-decorations tag has no wiki summary.
5
votes
3answers
263 views
CSS: How to clear line-through for an element in a table row?
I'm having trouble "clearing" a line-through that I'm using on a table row. I don't want the line-through effect on the link. I'm changing the tr class dynamically with javascript so I would like to ...
3
votes
1answer
441 views
Any way to stop CSS :hover text-decoration underline on child? [closed]
Possible Duplicate:
How do I get this CSS text-decoration issue to work?
I'm using the jquery toggle effect to show or hide more information about list elements:
...
3
votes
2answers
408 views
Inherited Text-Decoration style
How would I negate or remove a parents text-decoration style? For example in the following, both the text and the anchor have a text-decoration of line-through, is there a way to not have that applied ...
2
votes
1answer
67 views
Text decoration for link and span inside this link
I have links like:
<a href="#">Link text<span>Link sub-text</span></a>
When hovering I need that text inside span is not decorated with underline (but main link text is). ...
2
votes
1answer
83 views
text-decoration not working
Why are the post titles underlined in this page even though h2 element has text-decoration: none as a description?
2
votes
2answers
72 views
Span in a tag with different style
In my HTML code I have a tag with a span tag inherited. My question is now how can I achieve that the text in the link-element will be underlined on hover and the span-element not?
HTML:
<a ...
2
votes
1answer
702 views
jquery .css('text-decoration') doesn't work from parents
I have to get needed css property of element (properties may be inherited from it's parent)
Standart jquery .css() can do it.
So i have such an HTML:
<div id="container"> some text<br>
...
2
votes
4answers
764 views
How do I get this CSS text-decoration override to work?
Some days I swear I'm going mad. This is one of those days. I thought my CSS was fairly straight-forward here, but it just doesn't seem to be working. What am I missing?
My CSS looks like this:
ul ...
1
vote
1answer
37 views
How to change 'text-decoration' property with jQuery?
I have table with following structure:
<table style=" margin-top: 10px; border: 1px wheat solid; width: 100%; font-size: 10px; font-family: Arial , Verdana;text-shadow:0px 1px 0px #000">
...
1
vote
4answers
57 views
CSS and specificity - class vs ids
Consider the following html:
<div id="rightBar">
<div class="barElement">
<div class="barText"><a href="#">Not underlined</a><br /></div>
...
1
vote
2answers
78 views
Limit underline to the text
I'd like to have the underline for the text only and at the same keep the image part of the link:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
1
vote
3answers
532 views
adding text decorations to console output
I have a c# .net 3.5 application that writes text to the console using a StreamWriter. Is there a way I can add text decorations like underline and strikethrough to the text that is printed to the ...
1
vote
1answer
101 views
Is it possible to expressly set a line's height of text underlined using `text-decoration: underline;` in CSS?
Is it possible to expressly set a line's height of text underlined using text-decoration: underline; in CSS? IE and FireFox renders text with font-weight: bold; and text-decoration: underline; applied ...
1
vote
1answer
1k views
Wavy underlines as a TextDecoration: what I am doing wrong?
I want to create wavy underlines using TextDecoration (in a control similar to RichTextBox).
I did the following thing:
private static Pen CreateErrorPen() {
var geometry = new StreamGeometry();
...
0
votes
3answers
21 views
Text decoration on scroll to top javascript code
I have a link at the bottom of my page with
<a href="javascript:scroll(0,0)">
Online Marketing
</a>
To scroll to top of page but it makes the text blue and underlined how do i add ...
0
votes
1answer
33 views
CSS text-underline rendering difference between FF/IE and Chrome
I have a question. In the following url I have a set of h1,h2 and p elements with their respective css styling. The h1 element has text-decoration underline.
http://nostalgia.mx/light2.html
Open the ...
0
votes
2answers
77 views
How to underline a dynamic paragraph of text to the end of the line?
I have a dynamic paragraph (the text will be changed ongoing) that I want to underline, however I want the underlines to span to the right edge of the container element rather than stopping at the end ...
0
votes
0answers
57 views
How to draw decorated text in PdfBox?
I need to draw decorated text in a PdfBox document and haven't found how to do it. I specifically need to draw:
underlinded
double height (or double size and half width)
double width
in a ...
0
votes
3answers
44 views
I can not get rid of a underline text
I got this code:
<div class="class1"><a href="http://nvm/">text</a></div>
CSS code of class1 is following:
.class1 {
text-decoration: none;
}
The output looks on, ...
0
votes
3answers
65 views
CSS decoration - fill the cyrcles of the letters
Is it possible to fill the cyrcles in letters like "p", "o", "g", etc?!? It looks like a fun text-decoration.
Edit: with no custom font, just css.
0
votes
1answer
30 views
Storing and displaying decorated text on multiple platforms
I'm building an application which will be available on several platforms (web, iphone, android...). They all display data from the same database.
What's the best way of storing some decorated text in ...
0
votes
0answers
82 views
How to underline a TextBlock item in WPF with a Trigger?
Good afternoon all!
I have a TextBlock binded to a RegisterValue that has some states like IsNew, HasChanged etc,...
Code:
<TextBlock
Name="txtRegisterValue"
Text="{Binding ...
0
votes
4answers
58 views
Clear the text style of the Element using Javascript
I need to clear the text decoration property of the element using java script.
Currently I am setting text decoration property of element to 'line-through'. In some point of time i need to undo the ...
0
votes
1answer
220 views
Checkbox to change textdecoration input field
With javascript, i want my checkbox to change the text decoration of an input text field.
So when it's checked, the text in the input text field turns bold.
Remember i'm learning so i'm not a pro ...
0
votes
1answer
115 views
Remove text decoration from links
Why won't this remove the underline from the facebook and assassin industries links on this page.
.module_wpproad {
text-decoration:none;
border:none;
}
-1
votes
7answers
285 views
Text decorations in CSS
I've just learned how to make a text to blink (<div style="text-decoration:blink">text</div>).
How about the other decoration modes such as color changing? Are they available in CSS?
...
-4
votes
6answers
165 views
Blue lines under links on my site even though I've disabled all related CSS?
Click here to see the issue
Click here to see the website
I've tried disabled text-decoration, outlines, borders, and everything else I can think of. Using the inspect tool I cannot find anything ...