1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-07 04:24:22 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/howtos/faq/csFAQ_what_this_and_that_tag.tid

33 lines
651 B
Plaintext
Raw Normal View History

created: 201804111739
modified: 201804111739
title: Q: How can I style a tiddler if it has "this" AND "that" tag?
tags: [[Custom Styles FAQ]]
''Answer:'' <<.from-version "5.1.16">>
If tiddler has both: `this` AND tag `that` create an orange border.
```
[data-tags*="bar"][data-tags*="froz"] {
border: 2px solid orange;
}
```
''If your CSS looks like this: ''
```
[data-tags~="this"] {
border: 2px solid blue;
}
[data-tags~="that"] {
border: 2px solid red;
}
```
`this` creates a blue border
`that` creates a red border
If you swap positions, you get it the other way around.
[[Learn more about possible attributes!|Attribute Selectors]]