1

I want to make the image to fully right and top side of the screen.

body{
font-family: 'Roboto', sans-serif;
font-weight: 300;
background: #822B2B;
color: #ffffff;
overflow: hidden; }


#showcase{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
/* margin-left: 116px; */
/* width: 180vh; */
height: 100vh;

background: url('https://images.pexels.com/photos/1402787/pexels-photo-1402787.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260') no-repeat center center / cover; }

Please feel free to ask anything in need of clarification. Code at: https://codepen.io/zaidik/pen/WNQYbXz

Zed
  • 167
  • 2
  • 15

1 Answers1

0

Add margin:0; to your body CSS rules

j08691
  • 204,283
  • 31
  • 260
  • 272