所有类
javax.swing.text.html
类 CSS
java.lang.Object
javax.swing.text.html.CSS
- 所有已实现的接口:
- Serializable
-
public class CSS
- extends Object
- implements Serializable
将 CSS attributes 集定义为类型安全的枚举。HTML View 实现使用 CSS 属性来确定其呈现的方式。它还定义了 CSS/HTML/StyleConstant 之间的映射方法。任何 shorthand 属性(例如 font)都将被映射为 intrinsic 属性。
以下描述了呈现引擎所支持的 CSS 属性:
- font-family
- font-style
- font-size (支持相对单位)
- font-weight
- font
- color
- background-color(透明色除外)
- background-image
- background-repeat
- background-position
- background
- background-repeat
- text-decoration(闪烁和上划线除外)
- vertical-align(只有 sup 和 super)
- text-align(居中对齐)
- margin-top
- margin-right
- margin-bottom
- margin-left
- margin
- padding-top
- padding-right
- padding-bottom
- padding-left
- border-style(只支持 inset、outset 和 none)
- list-style-type
- list-style-position
以下是已建模的属性,但当前未呈现。
- font-variant
- background-attachment(背景总是被视为可滚动)
- word-spacing
- letter-spacing
- text-indent
- text-transform
- line-height
- border-top-width(用来指示是否应使用某个边框)
- border-right-width
- border-bottom-width
- border-left-width
- border-width
- border-top
- border-right
- border-bottom
- border-left
- border
- width
- height
- float
- clear
- display
- white-space
- list-style
注:目前我们尚未完全支持相对单元(除非另行说明),因此 p { margin-top:10% } 将被视为没有指定 margin-top(顶部空白)。
- 另请参见:
StyleSheet
嵌套类摘要 |
static class |
CSS.Attribute 用作 AttributeSet 的键的定义,此属性集可存储 CSS 属性。 |
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CSS
public CSS()
getAllAttributeKeys
public static CSS.Attribute[] getAllAttributeKeys()
-
返回所有可能的 CSS 属性键集合。
-
-
getAttribute
public static final CSS.Attribute getAttribute(String name)
-
将字符串转换为
CSS.Attribute
对象。如果给定名称没有属性,这将返回 null
。
-
-
- 参数:
name
- 要获取类型安全枚举的 CSS 属性名称
- 返回:
-
返回
CSS.Attribute
对象,如果字符串不表示有效的属性键,则返回 null
所有类