无论屏幕大小如何,在使用 css、html 或 YUI 设计网页时如何控制网页大小

发布于 2024-11-10 10:50:20 字数 363 浏览 2 评论 0原文

我正在使用这个,但它不适用于其他屏幕尺寸:-

body {
    background-color:#333;
    margin-left: 0px;
    margin-top: 0px;
    border-right-width: 20px;
    border-left-width: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    background-repeat: no-repeat;
    size:100%;
    background-size:100%;
    overflow-x:hidden;
    overflow-y: visible;
}

I`m using this one but it doesnt work in other screen sizes:-

body {
    background-color:#333;
    margin-left: 0px;
    margin-top: 0px;
    border-right-width: 20px;
    border-left-width: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    background-repeat: no-repeat;
    size:100%;
    background-size:100%;
    overflow-x:hidden;
    overflow-y: visible;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

闻呓 2024-11-17 10:50:20

我不确定“控制大小”是什么意思 - 您可以设置明确的高度和宽度,或使用百分比来实现流畅的布局。你能解释一下你想做什么吗?

I'm not sure what you mean by "control the size" - you could set an explicit height and width, or use percentages to achieve a fluid layout. Can you explain what you're trying to do?

对你而言 2024-11-17 10:50:20

首先执行margin:0;,您可以使用宽度和高度控制页面大小
我真的不明白为什么当你没有图像时你有 x-repeat。
则需要您的边框代码

border-style:solid;

如果您不想使用实心,

none
hidden
dotted
dashed
solid
double
groove
ridge
inset
outset
inherit

,还有其他选择高度和高度宽度。

http://www.w3schools.com/css/pr_dim_height.asp

http://www.w3schools.com/css/pr_dim_width.asp

(我真的不建议使用 w3school 来做其他事情,因为它确实已经过时了。)

first of all do margin:0; and you can control the page size by using width and height
I do not really get why you have x-repeat when you have no image.
your border code needs

border-style:solid;

if you don not want to use solid, there are other choices

none
hidden
dotted
dashed
solid
double
groove
ridge
inset
outset
inherit

height & width.

http://www.w3schools.com/css/pr_dim_height.asp

http://www.w3schools.com/css/pr_dim_width.asp

(I don't really recommend using w3school for other things since it is really outdated.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文