こんにちは、
現在、テキストは私のウェブサイトの上部にありますが、下部にしたいです。
<p style="text-align:relative;">this is best day ever!this is best day ever!this is best day ever!<p>
それを編集して text-align:bottom を追加すると、うまくいきません!!!!
このコードを試してください:
<html>
<head>
<title>test</title>
</head>
<body>
<div style="position: relative">
<p style="position: fixed; bottom: 0; width:100%; text-align: center"> TEXT YOU WANT
</p>
</div>
</body>
</html>
これを試して:
style="position:absolute; bottom:0px;"
要素を絶対に配置し、bottom プロパティを 0 に設定します。
p{
position: absolute;
bottom: 0;
}