Flex layout realizes left text overflow and omits right text adaptation

Flex layout realizes left text overflow and omits right text adaptation

I want to achieve a situation where the width of the text on the left can be automatically adjusted according to the length of the text. When one line cannot be displayed, the space for the text on the right will not be squeezed, and the text on the left will overflow and be omitted. Similarly, when the text on the right becomes longer, the text on the right is fully displayed, and the text on the left is squeezed and overflows, resulting in the effect of being omitted. What I said may not be very clear, let's take a look at the effect picture.

1. The width of the text on the right is the same as the text on the right, and the left side occupies all the remaining space by default.

2. The width of the text on the right is the same as 1. The text on the left is very long and overflows.

3. The text on the left is the same as 2, but the text on the right has two "right" added to it.

Below is the style:

.footer {
  width: 300px;
  height: 20px;
  display: flex;
  overflow: hidden;
}
.left {
  background: #3cc8b4;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 50px;
}
.right {
  background: #9bc;
  max-width: 250px;
}
.right-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

<div class="footer">
   <div class="left">
     leftleftleftleftleftleftleftleftleftleftleftleft
  </div>
  <div class="right">
    <div class="right-ellipsis">
      rightrightrightrightrightrightrightright
    </div>
  </div>
</div>

The code adds max-width, min-width and a div called right-ellipsis. To achieve the following effects:

We can achieve different effects according to our needs. Summary of design requirements: The width on the left side grows automatically, the width on the right side grows automatically and cannot overflow or be omitted. When the length of the left text exceeds the limit, the left text overflows and is omitted. The effect is as follows:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Three ways to communicate between React components (simple and easy to use)

>>:  The difference between docker run and start

Recommend

Detailed steps for configuring virtual hosts in nginx

Virtual hosts use special software and hardware t...

Instructions for using the meta viewport tag (mobile browsing zoom control)

When OP opens a web page with the current firmwar...

Docker deploys Mysql, .Net6, Sqlserver and other containers

Table of contents Install Docker on CentOS 8 1. U...

How to change the domestic source of Ubuntu 20.04 apt

UPD 2020.2.26 Currently Ubuntu 20.04 LTS has not ...

How to change the dot in the WeChat applet swiper-dot into a slider

Table of contents background Target Effect Ideas ...

How to add sudo permissions to a user in Linux environment

sudo configuration file The default configuration...

A brief discussion on the use of Web Storage API

Table of contents 1. Browser local storage techno...

Implementation code for partial refresh of HTML page

Event response refresh: refresh only when request...

How to use JavaScript to implement sorting algorithms

Table of contents Bubble Sort Selection Sort Inse...

MySQL quickly inserts 100 million test data

Table of contents 1. Create a table 1.1 Create te...