Use CSS to draw a file upload pattern

Use CSS to draw a file upload pattern

As shown below, if it were you, how would you achieve it:

Usually we use font icons to display the plus sign in the middle, and wrap it with a div on the outside; or use pseudo-elements to simulate the horizontal and vertical lines in the middle, which is more troublesome.

In fact, we can directly use div+css to achieve it.

Outline

The outline property is a shorthand property for setting one or more individual outline properties, for example.

A contour has the following properties:

{
    outline-style: solid;
    outline-width: 10px;
    outline-color: red;
}

They have a shorthand form:

{
    outline: 10px solid red;
}

Features of the outline

Outlines do not take up space; they are drawn on top of the content.

You can achieve the following effect:

I found that when setting outline-offset to a negative value, the outline will appear inside the div. If you continue to expand its negative value, the outline will eventually shrink into a "➕" plus sign, which can be used as the plus sign in the middle of the file upload style.

This is interesting, so here comes the code:

div {
    margin: 100px;
    width: 100px;
    height: 100px;
    outline: 15px solid #545454;
    outline-offset: -66px;
    border: 2px solid #545454;
}

outline-offset: -66px; is the key, it represents the distance of the outline from the edge of the div. If it is a negative value, it will shrink inwards, finally forming a plus sign. The specific uploaded style size and outline width need to be adjusted slowly by yourself to achieve harmony.

It should be noted that:

The container must be a square

The width of the outline border itself cannot be too small

Original github repository address: https://github.com/Daotin/front-end-notes/issues

Summarize

The above is what I introduced to you about using CSS to draw a file upload pattern. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Table related arrangement and Javascript operation table, tr, td

>>:  js code to realize multi-person chat room

Recommend

Summary of Docker common commands and tips

Installation Script Ubuntu / CentOS There seems t...

SQL left join and right join principle and example analysis

There are two tables, and the records in table A ...

A super detailed Vue-Router step-by-step tutorial

Table of contents 1. router-view 2. router-link 3...

Detailed explanation of the buffer pool in MySQL

Everyone knows that data in MySQL needs to be wri...

Determine the direction of mouse entry based on CSS

In a front-end technology group before, a group m...

Analyzing the troublesome Aborted warning in MySQL through case studies

This article mainly introduces the relevant conte...

How to install MySQL 8.0.17 and configure remote access

1. Preparation before installation Check the data...

Solution to the error when calling yum in docker container

When executing yum in dockerfile or in the contai...

Django2.* + Mysql5.7 development environment integration tutorial diagram

environment: MAC_OS 10.12 Python 3.6 mysql 5.7.25...

Summary of XHTML application in web design study

<br />Generally speaking, the file organizat...

How to build an ELK log system based on Docker

Background requirements: As the business grows la...

7 skills that great graphic designers need to master

1》Be good at web design 2》Know how to design web p...

Summary of uncommon operators and operators in js

Summary of common operators and operators in java...

Docker Stack deployment method steps for web cluster

Docker is becoming more and more mature and its f...