Follow changes in WD-css-align-3-20170215

See also: http://www.w3.org/TR/2017/WD-css-align-3-20170215/
This commit is contained in:
Kyo Nagashima
2017-02-17 10:16:18 +09:00
parent 796c321b9d
commit b6d75a099b
3 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
syn match cssFontProp contained "\<\(justify\|align\)-\(self\|content\|items\)\>"
syn match cssFontProp contained "\<\(justify\|align\|place\)-\(self\|content\|items\)\>"
syn keyword cssFontAttr contained safe unsafe legacy
syn match cssFontAttr contained "\<\(self\|flex\)-\(start\|end\)\>"
syn match cssFontAttr contained "\<space-\(between\|around\|evenly\)\>"

View File

@@ -5,9 +5,9 @@
align-self: self-end;
align-content: flex-start;
align-items: flex-end;
display: space-around;
display: space-between;
display: space-evenly;
place-self: space-around;
place-content: space-between;
place-items: space-evenly;
display: legacy;
}

View File

@@ -15,9 +15,9 @@
align-self: self-end;
align-content: flex-start;
align-items: flex-end;
display: space-around;
display: space-between;
display: space-evenly;
place-self: space-around;
place-content: space-between;
place-items: space-evenly;
display: legacy;
}
</style>