CSS automatically intercepts the specified length string and displays the end... Support FF browser

CSS automatically intercepts the specified length string and displays the end... Support FF browser
<style type="text/css">

Copy code
The code is as follows:

<!--
.div1{
width:200px;
}
.div1 span{
white-space:nowrap;
text-overflow:ellipsis; /* for internet explorer */
overflow:hidden;
width:168px;
display:block;
float:left;
}

html>body .div1:after{/* for FF*/
content: "...";
margin-left:5px;
}

-->
</style>

<div class="div1"><span>The compatibility of IE7 browser recently released by Microsoft has indeed added a heavy burden to some web page developers</span></div>


<<:  Use of SerialPort module in Node.js

>>:  In-depth analysis of Flex layout in CSS3

Recommend

Implementation of Single Div drawing techniques in CSS

You can often see articles about CSS drawing, suc...

Vue realizes dynamic progress bar effect

This article example shares the specific code of ...

What are the advantages of using B+ tree index in MySQL?

Before understanding this problem, let's firs...

JavaScript to implement the back to top button

This article shares the specific code for JavaScr...

Docker primary network port mapping configuration

Port Mapping Before the Docker container is start...

How to introduce scss into react project

First download the dependencies yarn add sass-loa...

JavaScript using Ckeditor + Ckfinder file upload case detailed explanation

Table of contents 1. Preparation 2. Decompression...

A brief discussion on how to choose and combine div and table

Page layout has always been my concern since I st...

Is it true that the simpler the web design style, the better?

Original address: http://www.webdesignfromscratch...

WeChat applet implements a simple calculator

WeChat applet's simple calculator is for your...

A complete list of common Linux system commands for beginners

Learning Linux commands is the biggest obstacle f...

What is this in JavaScript point by point series

Understand this Perhaps you have seen this in oth...

Detailed explanation of Vue plugin

Summarize This article ends here. I hope it can b...