gpt4 book ai didi

css - margin 顶部不起作用

转载 作者:行者123 更新时间:2023-11-28 09:09:58 25 4
gpt4 key购买 nike

这是一个最简单的 html 文档。我在 h1 样式中指定了 margin-top。这是文档:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Free mind!</title>
<style type="text/css">
p {
font-family : DejaVu Sans Mono;
font-size : 12pt;
line-height : 100%;
margin-top : 0cm;
margin-bottom : 0.3cm;
white-space : pre-wrap;
display : inline;
}
h1 {
font-size : 14pt;
line-height : 100%;
margin-top : 1cm;
display : inline;
color : blue ;
}
</style>
</head>
<body>
<h1>Bio</h1>
<p>
bk-simulates-range.py -S &quot;&quot; -b &quot;&quot; -e &quot;&quot; -s &quot;&quot; -t dspc.top -n 3000000 -c -j bk-runs-mpi.bash -w &quot;-4.5.5-double_gcc&quot; 2&amp;&gt; `date +%Y-%b-%d-%H%M%S`.log &amp;
bk-pymol-selects.py -f confout.gro -s &quot;resi 1-128&quot; -t traj.trr -i 50
bk-pymol-selects.py -f *ane.gro
bk-pymol-pic.py -f confout.gro -s &quot;resi 1-128&quot; -x &quot;-2&quot; -y &quot;-3&quot; -z &quot;0&quot; -t traj.trr
</p>
<h1>Bash</h1>
<p>
cd /new/dir; (cd /old/dir; find -type d ! -name .) | xargs mkdir
for i in `ls`; do $i; done
</p>
</body>
</html>

我认为这个问题一定很简单。

编辑:

所以问题是:

display : block;

h1 规范中。我最终使用了(这里我引用了 headbody - 其他部分不需要更改):

  <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Free mind!</title>
<style type="text/css">
p {
font-family : DejaVu Sans Mono;
font-size : 12pt;
line-height : 100%;
margin-top : 0px;
margin-bottom : 0px;
white-space : pre-wrap;
display : inline;
}
h1 {
font-size : 14pt;
line-height : 100%;
margin-top : 20px;
margin-bottom : -1px;
display : block;
color : blue ;
}
</style>
</head>
<body>
<h1>Bio</h1>
<p>bk-simulates-range.py -S &quot;&quot; -b &quot;&quot; -e &quot;&quot; -s &quot;&quot; -t dspc.top -n 3000000 -c -j bk-runs-mpi.bash -w &quot;-4.5.5-double_gcc&quot; 2&amp;&gt; `date +%Y-%b-%d-%H%M%S`.log &amp;
bk-pymol-selects.py -f confout.gro -s &quot;resi 1-128&quot; -t traj.trr -i 50
bk-pymol-selects.py -f *ane.gro
bk-pymol-pic.py -f confout.gro -s &quot;resi 1-128&quot; -x &quot;-2&quot; -y &quot;-3&quot; -z &quot;0&quot; -t traj.trr</p>
<h1>Bash</h1>
<p>cd /new/dir; (cd /old/dir; find -type d ! -name .) | xargs mkdir
for i in `ls`; do $i; done</p>
</body>

还有人说应该使用 empx 而不是 cmpt - 对于 cmpt 不适合网络。

最佳答案

h1 { 
font-size : 14pt;
line-height : 100%;
margin-top : 1cm;
display : block; /*changed*/
color : blue ;
}

关于css - margin 顶部不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8837406/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com