我正在尝试做的是使博客文章的标题恰好是博客描述宽度的一半,并将其自身对齐在博客描述宽度的 50% 处。
这是我在 JS 中尝试过的:
var post_title_width = document.getElementById("post_desciption").offsetWidth;
var post_title_width = post_description * 0.5;
document.getElementbyId("post_title").style.width = post_title_width;
HTML:
<div class="post">
<span class="post_title">This is a test title, testing some javascript...........</span><br>
<span class="post_description">Hello this is a test description right here, just to test some code im trying to do</span>
</div>
我没有使用 css,因为我想测试 javascript 并学习如何有效地使用它。