|
|
|
@ -25,7 +25,7 @@ public class UIComponentUtils {
|
|
|
|
|
* html内联css实现文本靠右对齐rtl |
|
|
|
|
*/ |
|
|
|
|
private static final String HTML_TAG_TPL = BidiUtils.rtl() ? "<html><body style='text-align: right;width: %dpx'>" : "<html><body style='width: %dpx'>"; |
|
|
|
|
private static final String HTML_BODY_TAG = "<html><body>"; |
|
|
|
|
private static final String HTML_BODY_TAG = BidiUtils.rtl() ? "<html><body style='text-align: right'>" : "<html><body>"; |
|
|
|
|
private static final String HTML_TAG = "<html>"; |
|
|
|
|
private static final int MIN_WIDTH = 10; |
|
|
|
|
|
|
|
|
|