Answers for "div top right css"

CSS
0

how to make a div in top left in css

div{
	position: absolute;
  	top: 0;
  	left: 0;
}
Posted by: Guest on January-20-2021
0

how to make div top right

<style type="text/css">
 .topcorner{
   position:absolute;
   top:0;
   right:0;
  }
</style>
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language