Skip to content

Instantly share code, notes, and snippets.

@kertnik05
Created July 7, 2020 12:00
Show Gist options
  • Select an option

  • Save kertnik05/64900308099e4ebd2858a1780ab7736e to your computer and use it in GitHub Desktop.

Select an option

Save kertnik05/64900308099e4ebd2858a1780ab7736e to your computer and use it in GitHub Desktop.
Create diagonal border of a cell
td {
padding: 50px;
border: 2px solid black;
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49%, white), color-stop(50%, black), color-stop(51%, white));
background-image: -webkit-linear-gradient(top left, white 49%, black 50%, white 51%);
background-image: -o-linear-gradient(top left, white 49%, black 50%, white 51%);
background-image: linear-gradient(to bottom right, white 49%, black 50%, white 51%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment