This repository was archived by the owner on Dec 22, 2023. It is now read-only.
Replies: 1 comment
-
Sciter already supports '~' selector. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Recently, I'm trying to work my UI prototype using pure css tab control. I find CSS selector "~" is used in many solutions, but sciter.js don't support this selector. Can Sciter.js provide ~ selector support?
It's great help for reusing existing CSS code and can help Sciter.JS ecosystem growth faster.
And CSS 3 :target selector is another to simply UI layout. Below is sample code running in browser.
<style> .tab div { display: none; }.tab div:target {
display: block;
}
</style>
Link 1
Link 2
Link 3
Content to Link 1
Hello World!
Content to Link 2
Great success!
Content to Link 3
Yeah!
Beta Was this translation helpful? Give feedback.
All reactions