Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6731289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:30:39+00:00 2026-05-26T10:30:39+00:00

Here’s what I need to pull off in CSS (it’s terribly ugly, but it

  • 0

Here’s what I need to pull off in CSS (it’s terribly ugly, but it shows my problem well as an example):

Gradient example

We’ve got a gradient over text with a drop shadow on a background that has a slight gradient.

I’ve tried every method I could find.

This method won’t work with a text-shadow.

The PNG overlay method won’t work because I don’t have a solid color background.

This method won’t work because it requires me putting the text string in the CSS and my text will be dynamic.

So, I’m stumped.

It doesn’t need to work in every browser (I’m fine with ignoring IE, if necessary). If it only works in Webkit browsers, that’d be fine as well.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T10:30:39+00:00Added an answer on May 26, 2026 at 10:30 am

    That should be the answer:

    HTML

    <h1><span>Filthy</span></h1>
    

    CSS

    h1 {
       position: relative;
       font-size: 300px;
       line-height: 300px;
       text-shadow: -3px 0 4px #006;
    }
    h1 span {
       position: absolute;
       top: 0; 
       z-index: 2;
       color: #d12;
       -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    }
    h1:after {
       content: attr(cssFilthyHack);
       color: #000;
       text-shadow: 3px 3px 1px #600;
    }
    

    JS

    $('h1').each(function(i, e){
        var el = $(e);
        el.attr('cssFilthyHack', el.find('span').html());
    });
    

    The important thing is to use content: attr(cssFilthyHack); to extract the text from the h1 text. You could add the text a second time in html like this

    <h1 cssFilthyHack="Filthy"><span>Filthy</span></h1>
    

    Or you use the js jQuery method to do this automatically.


    UPDATE

    Replaced the a tag with span, added js function.

    See the example here in action: http://jsfiddle.net/alligator/Gwd3k/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's a problem I ran into recently. I have attributes strings of the form
Here's a coding problem for those that like this kind of thing. Let's see
Here's an interesting problem. On a recently installed Server 2008 64bit I opened IE
Here is my problem : I have a post controller with the action create.
Here is an example. foreach (var doc in documents) { var processor = this.factory.Create();
Here is an example: I write html code inside of textarea, then I swap
Here is the css: #content ul { font-size: 12px; } I am trying this:
Here my problem: @Assert\Regex( * pattern=/^[A-Za-z0-9][A-Za-z0-9\]*$/, * groups={creation, creation_logged} * ) I'm using the
Here's an example query: DECLARE @table table (loc varchar(10)) INSERT INTO @table VALUES ('134a'),
Here is an example: I have the generic type called Account. I wish to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.