TheRandomCrew / TicTacToe-JS

A Tic Tac Toe game you can play in your browser!
https://raw.githack.com/Israel-Laguan/TicTacToe-JS/24623a2bc3f0764698f32103f8b48074abf91278/index.html
Apache License 2.0
1 stars 3 forks source link

Background-repeat #15

Closed arandamerinoalberto closed 1 year ago

arandamerinoalberto commented 4 years ago

https://github.com/Israel-Laguan/TicTacToe-JS/blob/9e364a84be1f8036185a08785785756461e73c20/src/css/main.css#L39

Why use background-repeat: no-repeat; in this code line? Thanks

Israel-Laguan commented 4 years ago

If the image is smaller than the height, CSS tries to repeat the image automatically. By putting that rule this behavior is avoided.