From 83b88a031cc8f2006fd361bf0a0b548c3bcc8259 Mon Sep 17 00:00:00 2001 From: sjef Date: Fri, 5 Feb 2016 13:14:37 +0100 Subject: [PATCH] Added missing bottom property in React.CSSProperties --- react/react.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/react/react.d.ts b/react/react.d.ts index e9b88dde27..9b57288cfd 100644 --- a/react/react.d.ts +++ b/react/react.d.ts @@ -686,6 +686,11 @@ declare namespace __React { */ borderWidth?: any; + /** + * This property specifies how far an absolutely positioned box's bottom margin edge is offset above the bottom edge of the box's containing block. For relatively positioned boxes, the offset is with respect to the bottom edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties). + */ + bottom?: any; + /** * Obsolete. */