strikethrough

CSS strikethrough different color from text?

The HTML elements del or strike, and the CSS text-decoration property with a value line-through, may all be used for a text strike-through effect. Examples: <del>del</del> ...gives: del <strike>strike</strike> ....gives: strike <span style='text-decoration:line-through'> text-decoration:line-through </span> ...

Strikethrough or line-through text using sIFR

I am using sIFR3-r436. I want to strikethrough or line-through some text. I have tried both <s>HTML</s> and CSS: text-decoration:line-through but it won't work. Here's my code. css: ['.sIFR-root { font-size:28px; line-height:36px; font-weight:bold; color:#130f0e; text-align:center; leading: 0; margin:0px; padding:0; }','strong {text-de...

Strike-through font in objective C

Hi, How can I use strike-through font in objective C??? More specifically in UITableViewCell cell.textLabel.text = name; cell.detailTextLabel.text = quantity ; cell.XXX = ?? ...

Can I change the vertical position of a strike-through on a website?

I'm applying the strikeout tag <s>$5,000,000</s> But the line is too low.. .it's about 1/4 from the bottom rather than through the middle. Any way I can modify this so it goes a bit more through the middle? ...

In WPF RichTextBox, does overriding of Underline/Strikethrough work?

In a WPF RichTextBox, the effective style of a Run of text is a result of combining the properties defined on the Run with the properties it "inherits" from the enclosing Paragraph and finally the styles on the Document. So you can set FontWeight to Bold at any of those levels. You can also set it Bold on the Paragraph and then switch it...

How to strike out inside LaTeX equations?

Please see the snippet below and tell me how can I achieve the same strike-out effect as in the main text. I am using the version of LaTeX from the latest Ubuntu repositories. \documentclass{article} \usepackage{ulem} \begin{document} The sout tag works perfect in the \sout{main text area} but not inside the equations. $$ list = [1, \so...

GridView Style based on bound data.

I would like the rows of my GridView to have strikethrough based on a bound data value called IsObsolete. I tried to do this: <RowStyle BackColor="#EFF3FB" Font-Strikeout='<%# Bind('IsObsolete') %>' /> But obviously this doesn't parse. I'd rather not do this in GridView.DataBound(). Any other ideas? ...

fPDF: how to strikeout/strikethrough justified text in multicell?

Hi, I am generating a PDF with fPDF. I need to strikethrough a long text inside a MultiCell. The text is justified to left and right, which probably is the source of the problem. Here is my code: //get the starting x and y of the cell to strikeout $strikeout_y_start = $pdf->GetY(); $strikeout_x = $pdf->getX(); $strikeText = "Some te...

Is there an easy way to strike through text in an app widget?

Hi! I was wondering if there is an easy way to strike text within an app widget in Android. In a normal activity, it is pretty easy, using textview flags: textView.setPaintFlags(textView.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG); But since in an app widget, I can use only remoteviews... I do not know if this is possible Anyone ...