您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

text.css 221B

12345678910111213141516
  1. #textToolInput {
  2. position:fixed;
  3. top:-1000px; /*Hidden*/
  4. left:200px;
  5. width:100%;
  6. }
  7. #textToolInput:focus {
  8. top:0;
  9. }
  10. text {
  11. font-family:"Arial", "Helvetica", sans-serif;
  12. user-select:none;
  13. -moz-user-select:none;
  14. }