Browse Source

* Height was specified twice on image

Michaël Van Canneyt 1 year ago
parent
commit
2b343adbdc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      demo/DivAndSpan/mainunit.pas

+ 1 - 1
demo/DivAndSpan/mainunit.pas

@@ -139,7 +139,7 @@ begin
   with Img1 do begin
     Name:='Img1';
     Parent:=Body1;
-    Style:='border-color: red; height:50px; position: absolute; left: 150px; top: 200px; width: 48px; height: 48px;';
+    Style:='border-color: red; border: 3px, height:50px; position: absolute; left: 150px; top: 200px; width: 48px; height: 48px;';
     Image.LoadFromFile('image.png');
   end;