Background and transparent text are cut off
P粉439804514
P粉439804514 2024-03-25 16:47:36
0
2
386

Is there a way to use CSS to create the cutting out transparent text from the background effect as shown below?

It would be a shame to lose all that valuable SEO because images replace text.

I thought of shadows first but I couldn't think of anything...

This picture is the background of the website, absolutely positioned<img>tag

P粉439804514
P粉439804514

reply all(2)
P粉200138510

While this can be achieved with CSS, a better approach is to use inline SVG with SVG masks. This approach has some advantages over CSS:

CodePen Demo: SVG Text Mask

body,html{height:100%;margin:0;padding:0;}
body{
  background:url('https://farm9.staticflickr.com/8760/17195790401_94fcf60556_c.jpg');
  background-size:cover;
  background-attachment:fixed;
}
svg{width:100%;}

  
    
      
      SVG
      Text mask
    
  
      

If your goal is to make the text selectable and searchable, you need to include it outside the <defs> tag. The following example shows one way to preserve transparent text using the < using the > tag:

body,html{height:100%;margin:0;padding:0;}
body{
  background:url('https://farm9.staticflickr.com/8760/17195790401_94fcf60556_c.jpg');
  background-size:cover;
  background-attachment:fixed;
}
svg{width:100%;}

  
    
      SVG
      Text mask
    
    
      
      
    
  
  
  
P粉351138462

CSS3 can be implemented, but not all browsers support it

With background clip: text; you can use a text background, but it must be aligned with the page background

body {
    background: url(http://www.color-hex.com/palettes/26323.png) repeat;
    margin:10px;
}
h1 { 
    background-color:#fff;
    overflow:hidden;
    display:inline-block; 
    padding:10px; 
    font-weight:bold;
    font-family:arial;
    color:transparent;
    font-size:200px;
}
span { 
    background: url(http://www.color-hex.com/palettes/26323.png) -20px -20px repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    display:block;
}

ABCDEFGHIKJ

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!