Problem Description The button style is icon + text. When using flex layout to vertically center it, the text and icon are not centered on the iPhone 7 phone, but displayed on the left. The code is as follows (simplified): <button> <img src="./refresh.png" alt /> {{ confirmButtonText }} </button> ... button { display: flex; align-items: center; justify-content: center; img { width: 36px; height: 36px; display: inline-block; } } Expected style: Actual style: Solution Wrap another layer of labels around the icon and text, and set the flex vertical center style for the outer label. The code is as follows: <button> <span class="wrap"> <img src="./refresh.png" alt /> {{ confirmButtonText }} </span> </button> ... button { display: flex; align-items: center; justify-content: center; .wrap { img { width: 36px; height: 36px; display: inline-block; } } } This is the end of this article about how to solve the problem of flex vertical centering inside button not being centered. For more information about flex vertical centering inside button not being centered, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
<<: Practice of using Tinymce rich text to customize toolbar buttons in Vue
>>: A Brief Analysis of Patroni in Docker Containers
This article shares the specific code of JavaScri...
A joint index is also called a composite index. F...
Implemented according to the online tutorial. zab...
Before using jQuery to complete the fade-in and f...
hint This plug-in can only be accessed under the ...
Table of contents 1. CDN introduction 1.1 react (...
1. Background Buttons are very commonly used, and...
Table of contents 1. Brief Overview 2. JSON basic...
Table of contents 1. What is a doubly linked list...
Preface I wrote a few examples using vue3, and I ...
According to canisue (http://caniuse.com/#search=...
When developing mobile apps, you often encounter ...
1. Under 800*600, if the width of the web page is...
There are many ways to write and validate form fi...
Note: Currently, the more popular front-end frame...