Last active
January 12, 2020 12:57
-
-
Save t-artikov/a57d7165d47845ec045847c34b3df18e to your computer and use it in GitHub Desktop.
html gradient
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
#grad1 { | |
height: 200px; | |
background-image: linear-gradient(to right,#ff0000ff, transparent, #0000ffff); | |
} | |
</style> | |
</head> | |
<body> | |
<div id="grad1"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment