GithubHelp home page GithubHelp logo

03/17 #Team 94 about css-course-platform HOT 2 CLOSED

Jmagero avatar Jmagero commented on August 12, 2024
03/17 #Team 94

from css-course-platform.

Comments (2)

idgm5 avatar idgm5 commented on August 12, 2024 1

Just a small observation for the backgrounds in the illustrations inside your about page:
image

You can add a span tag and make it a block then give it a black background with some transparency, and for the position, you can use z-index property to make it stay behind the text but above the background image.

span {
  display: inline-block;
  position: absolute;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%; 
  height: 40rem; 
}

I'm using height to give it some kind of size, you can adapt it to the framework you created.

Cheers :)

from css-course-platform.

SevlaMare avatar SevlaMare commented on August 12, 2024

(For future reference)
Another approach is to use the image as a background:
background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url("images/team1.png");
or just adjust image direct.

from css-course-platform.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.