需要如下效果:

让输入文字在div中的右下角

 

 

html代码:

 

<!DOCTYPE html>
<html>

	<head>
		<meta charset="utf-8" />
		<title></title>
		<style type="text/css">
			#box {
				width: 1000px;
				height: 900px;
				background-color: sandybrown;
				position: absolute;
			}
			
			#box>p {
				position: absolute;
				right: 0;
				bottom: 0;
				color: salmon;
			}
		</style>
	</head>

	<body>
		<div >
			<p>
				hello 过年好!
			</p>
		</div>
	</body>

</html>

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2022-02-24
  • 2022-12-23
  • 2021-11-29
  • 2021-11-06
猜你喜欢
  • 2022-01-10
  • 2022-12-23
  • 2022-01-11
  • 2022-12-23
  • 2021-07-02
  • 2022-12-23
相关资源
相似解决方案