1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-04 11:13:15 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/howtos/faq/csFAQ_what_this_and_that_tag.tid
Mario Pietsch 19085a1277 Add data attributes to ViewTemplate (#3209)
* change 3 set-widgets to 1 var-widget call. Add data-tags and userClass.

* add new documentation and change the existing one accordingly.
2018-04-24 22:08:20 +01:00

33 lines
651 B
Plaintext

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]]