An example of the calculation function calc in CSS in website layout

An example of the calculation function calc in CSS in website layout

calc is a function in CSS that is used to calculate numerical values. It can calculate length, angle, time, etc. Supports + , - , * , / and parentheses. One thing to note when using it is that there needs to be a space before and after the plus sign and minus sign . calc greatly increases the flexibility of CSS. Provides convenience for some special layouts.

The effect of the example display

An example using the cacl layout

I want to create an effect where the background of #div1 extends to the visible area of #div2 , and displays a fixed 60 pixels in #div2 . That is, the black frame width is 60px. Regardless of the width of #div1 .

CSS Code

#div1 {
    width: 100%;
    min-width: 400px;
    outline: blue;
}
#div2 {
    width: 300px;
    margin: 0 auto;
    outline: 1px solid #ccc;
    color: white;
}

HTML code

<div id="div1" class="cw">
    <div id="div2">
        test
    </div>
</div>

Solution

.cw {
    background:blue linear-gradient(
    to right, red calc(50% - 150px + 60px ) ,
    transparent calc(50% - 150px + 60px )
    );
}

cacl compatibility

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 encoding issues during MySQL command line operations

>>:  Parameters to make iframe transparent

Recommend

Implementation of breakpoint resume in vue-video-player

In a recent project, I needed to implement the fu...

JavaScript microtasks and macrotasks explained

Preface: js is a single-threaded language, so it ...

Detailed explanation of angular parent-child component communication

Table of contents APIs used Simple Example person...

How to enable MySQL remote connection in Linux server

Preface Learn MySQL to reorganize previous non-MK...

Vue.$set failure pitfall discovery and solution

I accidentally found that Vue.$set was invalid in...

A comprehensive analysis of what Nginx can do

Preface This article only focuses on what Nginx c...

How to install mysql database in deepin 2014 system

Deepin 2014 download and installation For downloa...

The concept and characteristics of MySQL custom variables

A MySQL custom value is a temporary container for...

Detailed explanation of the fish school algorithm in CocosCreator game

Preface I recently wanted to learn CocosCreator, ...

Detailed explanation of JavaScript onblur and onfocus events

In HTML pages, visual elements such as buttons an...

Two methods of restoring MySQL data

1. Introduction Some time ago, there were a serie...

When backing up files in Centos7, add the backup date to the backup file

Linux uses files as the basis to manage the devic...

In-depth understanding of javascript class array

js array is probably familiar to everyone, becaus...

Some details about semicolons in JavaScript

Preface Semicolons in JavaScript are optional, an...