Add docs for grid types

This commit is contained in:
Ravi Shankar 2017-02-20 14:27:21 +05:30
parent 5d740e4edd
commit c70fb42cea
3 changed files with 28 additions and 6 deletions

View file

@ -327,10 +327,10 @@ impl ToCss for ClipRect {
/// rect(...) | auto
pub type ClipRectOrAuto = Either<ClipRect, Auto>;
#[allow(missing_docs)]
/// The computed value of a grid `<track-breadth>`
pub type TrackBreadth = GenericTrackBreadth<LengthOrPercentage>;
#[allow(missing_docs)]
/// The computed value of a grid `<track-size>`
pub type TrackSize = GenericTrackSize<LengthOrPercentage>;
impl ClipRectOrAuto {