using System; using System.Collections.Generic; using System.Text; namespace HTEXLib { public class FontStyle { /// /// /// font-family、font-style、font-weight、font-variant、font-stretch、font-size、font-size-adjust、 /// kerning、letter-spacing、word-spacing和text-decoration /// public string color { get; set; } public double size { get; set; } //inherit 继承父级 public string family { get; set; } public string weight { get; set; } public string style { get; set; } public string decoration { get; set; } public string vertAlign { get; set; } public string align { get; set; } public string shadow { get; set; } } }