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

Understand CSS3 Grid layout in 10 minutes

Basic Introduction In the previous article, we in...

Sample code for implementing dark mode with CSS variables

Recently, WeChat was forced by Apple to develop a...

VMware virtual machine installation CentOS 8 (1905) system tutorial diagram

The world-famous virtual machine software VMware-...

Implementation of proxy_pass in nginx reverse proxy

The format is simple: proxy_pass URL; The URL inc...

The problem of form elements and prompt text not being aligned

Recent projects involve the creation of a lot of ...

How to solve the 2002 error when installing MySQL database on Alibaba Cloud

The following error occurred while installing the...

CSS3 text animation effects

Effect html <div class="sp-container"...

How are spaces represented in HTML (what do they mean)?

In web development, you often encounter characters...

Specific steps for Vue browser to return monitoring

Preface When sharing a page, you hope to click th...

Why MySQL does not recommend using subqueries and joins

To do a paginated query: 1. For MySQL, it is not ...

Design Theory: Text Legibility and Readability

<br />Not long ago, due to business needs, I...

Tutorial on resetting the root password of Mac MySQL

Disclaimer: This password reset method can direct...

React method of displaying data in pages

Table of contents Parent component listBox List c...

Vue two-choice tab bar switching new approach

Problem Description When we are working on a proj...

Vue simple implementation of turntable lottery

This article shares the specific code of Vue to s...