「サイトボックスからリンクを作成」していますが、これらのdivを正しく配置できないようです。ほとんどの場合、正しいですが、タイトルが死んで中央に表示され、「リンクを作成」ボタンが検索ボックスと整列し、検索ボックスがより右側に表示されます。私はこれらを45分ほど手抜きしていましたが、w3のポジショニングを研究しましたが、それを得ることはできません。任意のポインタが役立ちます。これらのdivの配置に役立つ必要があります...
相続人jsfiddle
https://jsfiddle.net/j6pf08kn/1/
HTML
<body>
<div id="top_con">
<div id="title_con">
<a href="swfs/welcomeflash.swf" id="downLink" download="welcomeflash">
<header id="title">
Diff Lirl
</header>
</a>
</div>
<div id="share_con">
<button id="share">Get a link!</button>
<textarea id="link"></textarea>
</div>
</div>
</body>
CSS
html {
height: 100%;
}
body {
background-color: black;
height: 100%;
margin: 0;
padding: 0;
}
header {
margin: 0 auto;
}
#top_con {
width: 100%;
display: inline-block;
}
#share_con {
float: right;
width: 40%;
display: inline-block;
}
#link {
width: 50%;
resize: none;
margin-top: 3%;
}
#share {}
#title_con {
width: 57%;
float: center;
display: inline-block;
}
#title {
font-family: "Arial Black", Gadget, sans-serif;
font-size: 48px;
text-align: right;
color: white;
cursor: pointer;
}
a {
text-decoration: none;
color: white;
}
これを確認してください。簡単な質問:それぞれの要素の垂直方向の配置を互いにどのようにしたいのですか?同じ高さですか?ミドルズ?ボトムズ? – MassDebates
私はそれらを同じ高さにして、それらを理想的な位置に水平に整列させたいと思っています。私はちょうどいつも物事を置く場所を決めるのが悪かったし、試してみるとCSSの位置を吸ってしまいます – cosmichero2025
ほぼ完了しました。申し訳ありませんが、デスクから離れる必要がありました。質問を削除しないでください! – MassDebates