- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
thirtydot 编辑:(没有文档类型)
这是 pastebin 中的代码:http://pastebin.com/zwPTd8dd
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My Layout</title>
<style type="text/css">
#wholepage{
background: #fff;
width: 960px;
margin: 0 auto;
}
#header{
width: 960px;
margin: auto 0;
}
#header ul{
border:1px solid #bbbbbb;
width:100%;
height:45px;
-moz-border-radius:8px;
-webkit-border-radius: 4px;
list-style: none;
}
#header ul li{
float: left;
margin: 3px;
}
#login-form{
position: relative;
margin-left: 750px;
margin-right: -20px;
border: 1px solid #4e4e4e;
}
#frontpage-content{
position: relative;
margin-right: 210px;
border: 1px solid #bbbbbb;
}
</style>
</head>
<body>
<div id="wholepage">
<div id="header">
<ul>
<li>Home</li>
<li>Profile</li>
<li>username
<input type="text"/>
</li>
<li>password
<input type="password" />
</li>
<li><input type="submit" value="login"/>
</ul>
</div>
<div id="login-form">
widget 1 : description of widget one here ...
</div>
<div id="login-form">
widget 2 : description of widget two here...
</div>
<div id="frontpage-content">
content here<br/>
content here<br/>
</div>
<p>Terms of use | Contact | About | Developers | Advertising | Services | Partners</p>
</div>
</body>
</html>
它正在下推“frontpage-content”div。很长一段时间以来,我一直在努力解决这个问题。我没有更多的想法。 :(
这个问题解决了。谢谢你们的帮助。
最佳答案
我假设从您如何设置边距来判断您希望 frontpage-content 位于登录表单小部件的右侧?
如果是,则您缺少“float”的 CSS 值。我会把你所有的侧边栏内容放在一个 div 中,id 像“left-sidebar”,然后制作它
#left-sidebar {
width: 200px;
float: left;
}
#frontpage-content{
position: relative;
width: 750px;
float: right;
border: 1px solid #bbbbbb;
}
#login-form{
position: relative;
width: 100%;
border: 1px solid #4e4e4e;
}
在您的源代码中,在#frontpage-content 之后,放置:
<div style="clear:both;"></div>
在你的页脚内容之前。
关于css - 我不明白为什么这个 CSS 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5095015/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!