mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 14:38:01 +02:00
Misstyped css style text alignment
This commit is contained in:
parent
c1ca9a357d
commit
89f30d2477
@ -372,10 +372,10 @@ begin
|
||||
s += Format(' border-color: %s;%s', [ColorToHex(p^.BorderColor),LineEnding]);
|
||||
end;
|
||||
case p^.Alignment of
|
||||
taRightJustify: s += ' align="right";';
|
||||
taCenter: s += ' align="center";';
|
||||
taRightJustify: s += ' text-align: right;';
|
||||
taCenter: s += ' text-align: center;';
|
||||
else
|
||||
s += ' align="left";';
|
||||
s += ' text-align: left;';
|
||||
end;
|
||||
s += ' } '+LineEnding+LineEnding;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user