Html+css to achieve pure text and buttons with icons

Html+css to achieve pure text and buttons with icons

This article summarizes the implementation methods of some basic page elements, which will be updated later. First of all, the most common thing we may encounter is the button cut-out. Buttons may have many appearances, but they can generally be divided into pure text buttons and buttons with icons. Let's talk about the implementation methods of these two types of buttons. The effect diagram is as follows:

The code is as follows:

XML/HTML CodeCopy content to clipboard
  1. </ pre > < pre   name = "code"   class = "html" > <!DOCTYPE html >      
  2. < html   lang = "zh-CN" >      
  3. < head >      
  4.    < title > Button Writing </ title >      
  5.    < meta   charset = "UTF-8" >      
  6.    < meta   http-equiv = "X-UA-Compatible"   content = "IE=Edge,chrome=1" >      
  7.    < link   rel = "stylesheet"   href = "css/style.css" >      
  8. < style   type = "text/css" >      
  9. a:hover{text-decoration: none;}
  10. .btn{
  11. display: inline-block;
  12. margin-top: 10px;
  13. padding: 10px 24px;
  14. border-radius: 4px;
  15. background-color: #63b7ff;
  16. color: #fff;
  17. cursor: pointer;
  18. }
  19. .btn:hover{
  20. background-color: #99c6ff;
  21. }
  22. .inbtn{
  23. border: none;
  24. }
  25. .bubtn{
  26. border: none;
  27. }
  28. .btn{
  29. font-style: normal;
  30. }
  31. .bgbtn span{
  32. margin-left: 10px;
  33. padding-left: 20px;
  34. background: url(images/edit.png) left center no-repeat;
  35. }
  36. .bgbtn02 img{
  37. margin-bottom: -3px;
  38. margin-right: 10px;
  39. }
  40. </ style >      
  41. </ head >      
  42. < body >      
  43. <!--<a>Tag button-->      
  44. <   href = ""   class = "btn" > aLabel button </ a >      
  45. <!--<input> tag button-->      
  46. < input   class = "inbtn btn"   type = "button"   value = "input label button" />      
  47. <!--<button> tag button-->      
  48. < button   class = "bubtn btn" > button tag button </ button >      
  49. <!--Any label button-->      
  50. < i   class = "ibtn btn" > i label button </ i >      
  51. <!--Button with background icon-->      
  52. <   href = ""   class = "bgbtn btn" >      
  53.    < span > Button with icon </ span >      
  54. </ a >      
  55. <   href = ""   class = "bgbtn02 btn" >      
  56.    < img   src = "images/edit.png" /> Button with icon
  57. </ a >      
  58. </ body >      
  59. </ html >      
As for the advantages and disadvantages of various labels, you still need to experience them. If you have any interesting buttons to write, let's realize them together.

<<:  Linux type version memory disk query command introduction

>>:  The actual process of implementing the guessing number game in WeChat applet

Recommend

Thoughts on truncation of multi-line text with a "show more" button

I just happened to encounter this small requireme...

Vue implements drag and drop or click to upload pictures

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

A brief analysis of SQL examples for finding uncommitted transactions in MySQL

A long time ago, I summarized a blog post titled ...

A brief talk about JavaScript variable promotion

Table of contents Preface 1. What variables are p...

jQuery plugin to implement accordion secondary menu

This article uses a jQuery plug-in to create an a...

43 Web Design Mistakes Web Designers Should Watch Out For

This is an article about website usability. The a...

Summary of using MySQL isolation columns and prefix indexes

Table of contents Isolate Data Columns Prefix Ind...

Two ways to implement HTML to randomly drag content positions

Test: Chrome v80.0.3987.122 is normal There are t...

How to use vue3+TypeScript+vue-router

Table of contents Easy to use Create a project vu...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...

Implementation code for using mongodb database in Docker

Get the mongo image sudo docker pull mongo Run th...

Apache ab concurrent load stress test implementation method

ab command principle Apache's ab command simu...

MySQL 4 common master-slave replication architectures

Table of contents One master and multiple slaves ...

How MLSQL Stack makes stream debugging easier

Preface A classmate is investigating MLSQL Stack&...