FHTzoob
(Filip)
26 Febrero, 2015 16:48
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 Me gusta
FHTzoob
(Filip)
26 Febrero, 2015 16:49
2
Try it yourself!
**I think I found a bug**
Now search “bug”! It will disappear.
9 Me gusta
riking
(Kane York)
26 Febrero, 2015 19:34
4
kbd * * {
display: none;
}
You’ve got kbd
-> strong
-> span class="search-result"
2 Me gusta
FHTzoob
(Filip)
26 Febrero, 2015 20:16
5
please translate into English
cpradio
(cpradio)
26 Febrero, 2015 20:19
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 me gusta
FHTzoob
(Filip)
26 Febrero, 2015 20:19
7
Oo, it doesn’t have to be in details summary, just kbd and b.
cpradio
(cpradio)
26 Febrero, 2015 20:20
8
kbd with your specific text in 1 nested tag. b, i, u, s, whatever.
zogstrip
(Régis Hanol)
2 Marzo, 2015 16:01
9
1 me gusta