FHTzoob
(Filip)
February 26, 2015, 4:48pm
1
Usually upon searching a word in the search tab, if the word is in the page you’re on it will be highlighted yellow, like this:
However today I was doing a lot of formatting and noticed that if the text is written inside
<details><summary><kbd><b>
Then it disappears when searched.
For example:
Then when you search “staff”:
5 Likes
FHTzoob
(Filip)
February 26, 2015, 4:49pm
2
Try it yourself!
**I think I found a bug**
Now search “bug”! It will disappear.
9 Likes
riking
(Kane York)
February 26, 2015, 7:34pm
4
kbd * * {
display: none;
}
You’ve got kbd
-> strong
-> span class="search-result"
2 Likes
FHTzoob
(Filip)
February 26, 2015, 8:16pm
5
please translate into English
cpradio
(cpradio)
February 26, 2015, 8:19pm
6
CSS Rule what is happening, in short search is trying to put a highlight on your found word and the extra tag it places on your word causes kbd * * to run its display none rule.
Testing this again without the detail summary
1 Like
FHTzoob
(Filip)
February 26, 2015, 8:19pm
7
Oo, it doesn’t have to be in details summary, just kbd and b.
cpradio
(cpradio)
February 26, 2015, 8:20pm
8
kbd with your specific text in 1 nested tag. b, i, u, s, whatever.
zogstrip
(Régis Hanol)
March 2, 2015, 4:01pm
9
1 Like