Example of using CSS to achieve semi-transparent background and opaque text

Example of using CSS to achieve semi-transparent background and opaque text

This article introduces an example of how to use CSS to achieve the effect of semi-transparent background and opaque text. The details are as follows:

The effect is as follows:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            html{
                background: #6a8db1;
            }
            .aside{
                
                background-color:rgba(244,251,251,0.47);
                
                border: 1px solid #FFFFFF;
                width: 200px;
                text-align: center;
                color: #FFFFFF;
            }
            
            .aside div{
                height: 55px;
                border-bottom: 1px solid #FFFFFF;
                line-height: 55px;
                
            }
            
            .aside div font{
                font-weight: 800;
                
            }
            
            .aside div span {
                font-weight: 800;
                margin-left:18px;
            }
            
            
        </style>
    </head>
    <body>
        <div class="aside">
            <div>
                <font>Holding Room 1</font>
                <span>10 people</span>
            </div>
            
            <div>
                <font>Holding Room 1</font>
                <span>4 people</span>
            </div>
            
            <div>
                <font>Holding Room 1</font>
                <span>12 people</span>
            </div>
            
            <div>
                <font>Holding Room 1</font>
                <span>6 people</span>
            </div>
            
            <div>
                <font>Holding Room 1</font>
                <span>8 people</span>
            </div>
            
        </div>
    </body>
</html>

The color can be adjusted according to the palette

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Detailed explanation of installing redis in docker and starting it as a configuration file

>>:  The use of MySQL triggers and what to pay attention to

Recommend

How to use MySQL stress testing tools

1. MySQL's own stress testing tool - Mysqlsla...

Common naming rules for CSS classes and ids

Public name of the page: #wrapper - - The outer e...

The most detailed method to install docker on CentOS 8

Install Docker on CentOS 8 Official documentation...

Using better-scroll component in Vue to realize horizontal scrolling function

About Recently, in the process of learning Vue, I...

How to use geoip to restrict regions in nginx

This blog is a work note environment: nginx versi...

mysql 8.0.15 winx64 decompression version graphic installation tutorial

Every time after installing the system, I have to...

JavaScript gets the scroll bar position and slides the page to the anchor point

Preface This article records a problem I encounte...

Vue.js implements simple timer function

This article example shares the specific code of ...

Javascript operation mechanism Event Loop

Table of contents 1. Four concepts 1. JavaScript ...

Solution for Vue routing this.route.push jump page not refreshing

Vue routing this.route.push jump page does not re...

MySQL database query performance optimization strategy

Optimize queries Use the Explain statement to ana...

How to sort a row or column in mysql

method: By desc: Neither can be achieved: Method ...

Using front-end HTML+CSS+JS to develop a simple TODOLIST function (notepad)

Table of contents 1. Brief Introduction 2. Run sc...