How to wrap HTML title attribute

How to wrap HTML title attribute
When I was writing a program a few days ago, I wanted to wrap the prompt information (TITLE) in a new line. Using '\n < BR >' doesn't work.
It's amazing that I just pressed Enter in the end.
I searched it online.
There are two solutions:
1. Write the title attribute in several lines, for example:
<a href=#" title="Description 1Description 2Description 3">Impressionism</a>
2. The first line is not intuitive enough. We can also add &#10; (change & to half-width, the same below) or &#13; where the line needs to be broken to achieve:
<a href=#" title="Explanation 1&#10;Explanation 2&#10;Explanation 3">Impressionism</a>
<a href=#" title="Explanation 1&#13;Explanation 2&#13;Explanation 3">Impressionism</a>

<<:  Example code for implementing ellipse trajectory rotation using CSS3

>>:  Detailed explanation of Shell script control docker container startup order

Recommend

Docker data storage tmpfs mounts detailed explanation

Before reading this article, I hope you have a ba...

React realizes secondary linkage effect (staircase effect)

This article shares the specific code of React to...

A brief analysis of SQL examples for finding uncommitted transactions in MySQL

A long time ago, I summarized a blog post titled ...

Introduction to HTML for front-end developers

1 Introduction to HTML 1.1 First experience with ...

Detailed explanation of using pt-heartbeat to monitor MySQL replication delay

pt-heartbeat When the database is replicated betw...

mysql5.7.17 installation and configuration example on win2008R2 64-bit system

123WORDPRESS.COM has explained to you the install...

Detailed explanation of MySQL 8.0 password expiration policy

Starting from MySQL 8.0.16, you can set a passwor...

mysql 8.0.19 winx64.zip installation tutorial

This article records the installation tutorial of...

How to remount the data disk after initializing the system disk in Linux

Remount the data disk after initializing the syst...

Springboot+Vue-Cropper realizes the effect of avatar cutting and uploading

Use the Vue-Cropper component to upload avatars. ...

How to build php+nginx+swoole+mysql+redis environment with docker

Operating system: Alibaba Cloud ESC instance cent...

js implements random roll call

This article shares the specific code of js to im...