Use HTML tags to separate references Ticket reply

Today, in view Ticket and found how and have a lot of back and forth between the client, Ticket of Correspondence will be very, very long, although we have our own Shipping, Returns , but because the client reply to a message, adding that separates the old information and the new dividing lines and mail in our system is inconsistent. Leading to longer and longer reply.

 

After viewing these Correspondence code, we are found to use <blockquote> tag to indicate that this is an old reply. as follows

<blockquote dir="ltr" style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">

………

</blockquote>

 

Or as follows

<div class="gmail_quote">

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

…..

</blockquote>

</div>

 

In this case, you only need to label this as one of our systems Break Line , you can view our Ticket Correspondence when these old messages in reply folded up. According to the above-described two pieces of code, add the following two Break Line .

 

<blockquote id="replyBlockquote"

 

<div class="gmail_quote">

 

In this way, the final results will become

 

clip_image001

 

 

 

HTML <blockquote> tag

Definition and Usage

<Blockquote> tag defines a reference block.

All text between the <blockquote> and </ blockquote> separated from the regular text, often indent (increase margins), and sometimes italics in the left and right sides. In other words, block references have their own space.

Examples

Mark length of reference:

<blockquote>
Here is a long quotation here is a long quotation here is a long quotation
here is a long quotation here is a long quotation here is a long quotation
here is a long quotation here is a long quotation here is a long quotation.
</blockquote>

 

Tips and notes:

Tip: Use the q element to mark a short quotation.

 

Source document < http://www.w3school.com.cn/tags/tag_blockquote.asp >

 

 

Use <blockquote> to mark a relatively long reference

 

clip_image002

 

 

Use <q> to mark a relatively short reference

clip_image003

 

 

Reproduced in: https: //www.cnblogs.com/henryhappier/p/3231001.html

Guess you like

Origin blog.csdn.net/weixin_33695082/article/details/93537298