Skip to content

CSS Calc() & Custom Properties #3

@wesamhamed

Description

@wesamhamed

There are mistakes in the pdf on page 7.
before:
.col-2-7{
width:calc(100%/2* 7);
}
.col-3-7{
width:calc(100%/3*7);
}
after(correct):
.col-2-7{
width:calc(100% * 2 / 7);
}
.col-3-7{
width:calc(100% * 3 / 7);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions