How does sass or postcss style two adjacent elements?

for example:

<div class="demo">
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
</div>

now I want to set the font size of the two adjacent elements when the div mouse under demo rolls. How do I write this code?

Nov.30,2021

prev-sibling cannot be achieved by relying solely on css at this stage

next-sibling can still be done
.demo > div:hover + div {font-size: 2em;}

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30e6c-2bd34.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30e6c-2bd34.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?