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
For Centos installation of MySQL, please refer to...
disabled definition and usage The disabled attrib...
Mysql-connector-java driver version problem Since...
Docker-machine is a Docker management tool offici...
1. Cause: I need to import a sql file, but I can&...
This article shares the specific code for importi...
Summary: Problem solving records of MYSQL: No mat...
There are some problems with the compressed versi...
Today we are going to implement a Thunder Fighter...
Preface In today's increasingly convenient In...
In fact, we wonder every day when IE6 will really...
How to debug a page on iPad? When using iOS 5, you...
This article shares the specific code of uni-app ...
1. Preliminary preparation (windows7+mysql-8.0.18...
Docker private image library Docker private image...