+ 2
How can I change the arrow symbols to pictures in this code?
10 Respostas
+ 4
Try this:
summary::-webkit-details-marker {
display: none;
}
details summary::before {
content:"➡";
}
details[open] summary::before {
content:"⬇"
}
https://code.sololearn.com/WL82YejXbR5L/?ref=app
+ 2
Yes
+ 2
It's not working!!!
+ 2
I asked that if the arrows in the summary tag could be changed?
+ 2
Thanks
+ 1
u mean in the list items
tiger
lion...??
+ 1
try using css
ul{
list-style-image: url(image.jpeg);
}
+ 1
for that use pseudo before or after classes..
and please clean your markups..
0
According to this you have to use before or after pseudo classes...
https://stackoverflow.com/questions/10813581/replace-the-expand-icon-of-html5-details-tag