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

Vue implements three-level navigation display and hiding

This article example shares the specific code of ...

Summary of common Mysql DDL operations

Library Management Create a library create databa...

How to allow remote connection in MySql

How to allow remote connection in MySql To achiev...

How to delete an image in Docker

The command to delete images in docker is docker ...

Detailed explanation of the simple use of MySQL query cache

Table of contents 1. Implementation process of qu...

JS implements random roll call system

Use JS to implement a random roll call system for...

Detailed tutorial for installing MySQL 8.0.11 compressed version under win10

After reinstalling my computer recently, I downlo...

How to optimize MySQL group by statement

In MySQL, create a new table with three fields, i...

Detailed comparison of Ember.js and Vue.js

Table of contents Overview Why choose a framework...

The shortest JS to determine whether it is IE6 (IE writing method)

Commonly used JavaScript code to detect which ver...

Several magical uses of JS ES6 spread operator

Table of contents 1. Add attributes 2. Merge mult...

Summary of Vue's common APIs and advanced APIs

Table of contents nextTick Mixins $forceUpdate se...

Tomcat first deployment web project process diagram

Put your own web project in the webapps directory...

Do not start CSS pseudo-class names with numbers

When newbies develop div+css, they need to name t...