How to distribute two buttons on the left and right sides of the same parent tag using CSS

How to distribute two buttons on the left and right sides of the same parent tag using CSS

This article mainly introduces the method of CSS layout of two buttons on the left and right sides of the same parent tag, and shares it with you. The details are as follows:

Rendering

Layout Code

<view class="grace-footer" style="width:100%;" slot="gFooter">
 <view style="float:right;width:50%">
    <button type="primary" style="line-height: 85rpx; margin: 25rpx; " @click="saveService(scanKay,tableList)">Submit</button> 
 </view>
 <view style="float:left;width:50%">
  <button type="warn" style="line-height: 85rpx; margin: 25rpx;" @click="removeService()">Reset</button>
 </view>
   
</view>

style="float:right;width:50%"
It is on the right side of the parent label container and occupies 50% of the width

style="float:left;width:50%"
It is on the left side of the parent label container and occupies 50% of the width

grace-footer is the CSS code introduced by GraceUI. Its effect is the bottom navigation

.grace-footer{
     position:fixed; 
     z-index:2; left:0; 
     bottom:0; 
     background:#FFFFFF; 
     width:750rpx; 
     overflow:hidden; 
     box-shadow:1px 1px 6px #888;
}

This is the end of this article about the CSS layout method of distributing two buttons on the left and right sides of the same parent tag. For more related CSS two buttons on the left and right sides of the same parent tag, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Set the input to read-only via disabled and readonly

>>:  New usage of watch and watchEffect in Vue 3

Recommend

CSS implements five common 2D transformations

2D transformations in CSS allow us to perform som...

Use JS to operate files (FileReader reads --node's fs)

Table of contents JS reads file FileReader docume...

Detailed explanation of the difference between alt and title

These two attributes are often used, but their di...

9 Practical Tips for Creating Web Content Pages

Content 1. Give readers a reason to stay. Make the...

Use the CSS border-radius property to set the arc

Phenomenon: Change the div into a circle, ellipse...

Detailed explanation of this pointing problem in JavaScript

Preface Believe me, as long as you remember the 7...

Echarts legend component properties and source code

The legend component is a commonly used component...

A brief discussion on JS packaging objects

Table of contents Overview definition Instance Me...

Detailed Analysis of the Differences between break and last in Nginx

Let's talk about the difference first last, t...

How to deploy Tencent Cloud Server from scratch

Since this is my first post, if there are any mis...

Detailed steps for installing MinIO on Docker

Table of contents 1. Check whether the docker env...

Introduction to the usage of props in Vue

Preface: In Vue, props can be used to connect ori...

Practical method of deleting associated tables in MySQL

In the MySQL database, after tables are associate...