Re: [css-d] a img tag being overwritten?

2014-09-11 Thread MiB
sep 11 2014 05:19 Tom Livingston : > Reading this over again, wouldn't > have any text-decoration anyway. If you write compliant code it would, at least in a non webkit browser like Firefox: __ css-discuss [css-d@lists

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread Philippe Wittenbergh
Le 11 sept. 2014 à 18:56, MiB a écrit : > sep 11 2014 05:19 Tom Livingston : > >> Reading this over again, wouldn't >> have any text-decoration anyway. > > > If you write compliant code it would, at least in a non webkit browser like > Firefox: > > Uh ? Does Firefox apply a text-decora

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread Tom Livingston
I guess you would if the images wasn't found. Alt text would get decorated? Can't check right now. On Thursday, September 11, 2014, Philippe Wittenbergh wrote: > > Le 11 sept. 2014 à 18:56, MiB > > a écrit : > > > sep 11 2014 05:19 Tom Livingston >: > > > >> Reading this over again, wouldn't >

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread MiB
sep 11 2014 13:26 Philippe Wittenbergh : > > Le 11 sept. 2014 à 18:56, MiB a écrit : > >> sep 11 2014 05:19 Tom Livingston : >> >>> Reading this over again, wouldn't >>> have any text-decoration anyway. >> >> >> If you write compliant code it would, at least in a non webkit browser like >

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread MiB
sep 11 2014 13:33 Tom Livingston : > I guess you would if the images wasn't found. Alt text would get decorated? > Can't check right now. That is what is happening and is on spec as far as I know. __ css-discuss [css-d@lists.c

[css-d] Fwd: a img tag being overwritten?

2014-09-11 Thread Tom Livingston
-- Forwarded message -- From: *MiB* Date: Thursday, September 11, 2014 sep 11 2014 13:33 Tom Livingston >: I guess you would if the images wasn't found. Alt text would get decorated? Can't check right now. That is what is happening and is on spec as far as I know. So yes,

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread Tom Livingston
...and it's wrapped in an . On Thursday, September 11, 2014, Tom Livingston wrote: > > > -- Forwarded message -- > From: *MiB* > > Date: Thursday, September 11, 2014 > > > > > sep 11 2014 13:33 Tom Livingston : > > I guess you would if the images wasn't found. Alt text would get

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread Philippe Wittenbergh
Le 11 sept. 2014 à 20:40, MiB a écrit : > Isn’t it obvious that alt text will be shown when there image isn’t? Oh, indeed; in that case the alt text should be visible, and decorated. (It wasn't clear to me from the context of this thread that you were talking about the situation of a missing

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread Philip Taylor
Philippe Wittenbergh wrote: Note that Firefox more often than not crops the alt text to the size of the image. Which (with the greatest respect) it cannot know, since the image is missing in the scenario under discussion. What I suspect it does (if it does anything aberrant) is to crop t

[css-d] how to locate un-used CSS?

2014-09-11 Thread John
Is there a way to determine which CSS are not being used by a site? I am using TextWrangler, so I am on my own in terms of trying to keep track what thing is used where - unlike Dreamweaver which may alert the author to unused styles, images, etc. Thank you! John __

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread John
On Sep 10, 2014, at 7:31 PM, Karl DeSaulniers wrote: > Yep, just tested this theory and it worked for me. > Wrap your images you dont want a border on in a div and put this css. > CSS > img:only-child { > border-bottom:0px dotted rgb(0,0,0) !important; > } > HTML -

Re: [css-d] how to locate un-used CSS?

2014-09-11 Thread Tom Livingston
https://unused-css.com/ On Thu, Sep 11, 2014 at 9:05 AM, John wrote: > Is there a way to determine which CSS are not being used by a site? I am > using TextWrangler, so I am on my own in terms of trying to keep track what > thing is used where - unlike Dreamweaver which may alert the author to >

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread Karl DeSaulniers
CSS = Cascading Style Sheets Cascading from top to bottom. What comes "after" will always override unless "important" or inline. Best, Karl Sent from losPhone > On Sep 11, 2014, at 8:45 AM, John wrote: > > >> On Sep 10, 2014, at 7:31 PM, Karl DeSaulniers wrote: >> >> Yep, just tested thi

Re: [css-d] a img tag being overwritten?

2014-09-11 Thread Philip Taylor
Karl DeSaulniers wrote: CSS = Cascading Style Sheets Cascading from top to bottom. What comes "after" will always override unless "important" or inline. Or less specific. Philip Taylor __ css-discuss [css-d@lists.css-discuss

Re: [css-d] how to locate un-used CSS?

2014-09-11 Thread David Laakso
On Thursday, September 11, 2014, John wrote: > Is there a way to determine which CSS are not being used .. . John, Try "dust me selectors" an add-on from Firefox. Best, David Laakso > -- Chelsea Creek Studio http:// ccstudi.com desktop | laptop | tablet | mobile Sent from iPhone 5s ___

Re: [css-d] how to locate un-used CSS?

2014-09-11 Thread John
On Sep 11, 2014, at 9:23 AM, David Laakso wrote: > Try "dust me selectors" an add-on from Firefox. that looks very promising..thank you! along with https://unused-css.com/ that is a good set of tools.. J __ css-discuss [cs