Text Gradient

Tạo text gradient

by Long Nguyễn Hoàng

HTML

<h1>Test text</h1>

CSS

@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400);

body {
  background: #222;
}

h1 {
  display: table;
  margin: 0 auto;
  font-family: "Roboto Slab";
  font-size: 5em;
  background: linear-gradient(180deg, #e05252 10%, #52e0e0 50%, #9952e0 75%, #e05252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}