I encountered a symptom of an underline in a WordPress blog that was not specified.
I want to remove this underline.
Problem i am experiencingFor example, this page.
https://yaemaru.net/heparinoid/
The secondis "Same drugs as Hildoid are sold in the market",
Since then, all text has been underlined.
The underline position looks like CSStext-decoration: underline;
, but there is no such designation anywhere, even if you check the following.
The following code was checked for underlined codes, but none of them were found.
・text-decoration: underline;
→ None
・ Pseudo-elements such asafter
→ None
・and other underline-dedicated elements->none
・ HTML direct writing → None
If i check from the smartphone, the text below the secondtag is all centered, so
It also seems to have something to do with it.
Can you tell me if you know the cause and countermeasure?
-
Answer # 1
-
Answer # 2
HTML There is a part where the syntax is strange, and that is the direct cause. (The following is an example)
Same drugs as hirudoid are sold commercially
Related articles
- use the javascript switch statement (without the if statement), create an element that displays the answer to the question as an
- javascript - chrome extension if "/" is entered in hostequals, it will not work
- javascript - i want to retain the value entered in onchangetext of react as a string type
- i want to search on screen without distinguishing hiragana and katakana with javascript
- javascript - how to determine the url entered in vuejs
- javascript - for some reason, the same value is entered, but the judgment is not true no change even if the data type is changed
- javascript - is it possible to get even if name is entered in the id name specified by getelementbyid?
- javascript - how to do biased randomness without using loops
- javascript - micro: bit go to without permission
- i want to convert the value entered in the javascript form to json and display it on the confirmation screen
- how to crop an image with javascript without using a library or plugin
- javascript - switch layout (css) with or without specific child elements
- javascript - when entering the time in the html form, you can enter without:, and if it is off, you want to add:
- # if you change the value once entered with the score input function with javascript, it will become nan
- javascript - when i display the value entered in the form, it is displayed as undefined
- javascript - to play the video corresponding to the entered characters
- javascript - it will be overwritten without permission
- javascript - i want to display the value entered in the created form in slack with incoming webhooks
- javascript - i want to make it visible without refreshing on html because the value obtained from outside python changes every f
- javascript - how to handle variable variables without using eval ()
- javascript : Getting dynamic value from input to form
- javascript : Adjusting window.open () window height for different screens
- javascript : Distance between menu items
- javascript : How to display part of an image on a website
- javascript : Two-column dropdown menu
- javascript : How do I make a regular div block work like input range?
- javascript : Encoding consisting of /letters and numbers
- javascript : Display the 1st column of the dropdown menu [duplicate]
- javascript : How to change the style file in index when clicking on the slider?
- javascript : HTML + CSS + JS. Working with canvas does not save image
The
ins
element surrounds the entire section because there is no
. In theins
element end tagins
element,text-decoration: underline
is specified by the user agent style sheet, which affects the descendant elements. Thetext-decoration
property is not inherited, but it affects all descendants. Therefore, it looks like "There is no specification to underline anywhere" as in the question text.After correcting this, it will be as follows (link for operation check).