CSS 文本布局/格式问题
所以我的网站中有大块文本,但现在 CSS 中的默认值是左对齐,因此所有文本都向左对齐。但是,假设我想将所有文本向右移动 100 像素。我如何在 CSS 中实现这一点? (我应该添加什么样的功能?)
谢谢!
So I have large blocks of text in my website, but right now the default in CSS is left, so all the text is aligned to the left. However, say I want to shift all the text to the right by 100 pixels. How do I accomplish this in CSS? (what kind of function should I add?)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题有点不清楚,但是您正在寻找的 CSS 中是
padding-left:100px
或margin-left:100px
吗?Your question is a bit unclear, but is
padding-left:100px
ormargin-left:100px
in the CSS that you're looking for ?