Use CSS to implement special logos or graphics

Use CSS to implement special logos or graphics

1. Introduction

Since pictures take up a lot of space and the more pictures there are, the harder it is to manage, so sometimes we can use some simple label styles to implement simple graphic logos to replace pictures.

2. Example display:

Triangle Example

Sample code:

<style type="text/css">
.triangle b {
    border: 5px solid #fff;
    border-left: 5px solid #353535;
    margin: 0;
    font-size: 0;
}
</style>

Directional Arrow Examples

Sample code:

<style type="text/css">
 .mark b{border:solid #D0D0D0;width:6px;height:6px;display:inline-block;}
 .mark b.lmark{border-width:2px 2px 0 0;transform: rotate(45deg);}
 </style>

Empty circle

 	*{
		padding:0;
		margin:0;
	}

	div:before{
		content:"";
		width:20px;
		height:20px;
		position:absolute;
		top:-10px;
		left:40px;
		border-radius:50%;
		background-color:white;
	}

	div{
		position:relative;
		width:100px;
		height:100px;
		margin:100px auto;
		box-shadow:0 0 2px red;
		background-color:#ccc;
	}

This is the end of this article about using CSS to implement special logos or graphics. For more relevant CSS special logo content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  Detailed explanation of how to use JS to achieve the effect of PS eraser scratch card in canvas

>>:  50 Super Handy Tools for Web Designers

Recommend

Sample code for implementing the Olympic rings with pure HTML+CSS

Rendering Code - Take the blue and yellow rings a...

Analysis of MySQL query sorting and query aggregation function usage

This article uses examples to illustrate the use ...

A detailed introduction to JavaScript primitive values ​​and wrapper objects

Table of contents Preface text Primitive types Pr...

Detailed tutorial on installing Protobuf 3 on Ubuntu

When to install If you use the protoc command and...

Detailed explanation of nmcli usage in CentOS8

Common nmcli commands based on RHEL8/CentOS8 # Vi...

A few things about favicon.ico (it’s best to put it in the root directory)

Open any web page: for example, http://www.baidu....

Three commonly used MySQL data types

Defining the type of data fields in MySQL is very...

Commands to find domain IP address in Linux terminal (five methods)

This tutorial explains how to verify the IP addre...

Summary of Mysql exists usage

Introduction EXISTS is used to check whether a su...

Detailed explanation of JS variable storage deep copy and shallow copy

Table of contents Variable type and storage space...

Uniapp implements DingTalk scan code login sample code

Since Uniapp does not have DingTalk authorization...

Detailed explanation of the difference between JavaScript onclick and click

Table of contents Why is addEventListener needed?...

Vue method to verify whether the username is available

This article example shares the specific code of ...

HTTP header information interpretation and analysis (detailed summary)

HTTP Header Explanation 1. Accept: Tells the web s...