惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

Hyde Blog

Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog
Hyde Blog
Hyde · 2025-10-05 · via Hyde Blog

留言板顶部距离 ​

blog-frontend\kuailemao-blog\src\components\Layout\Main\index.vue

css

.content_container {
  height: 100%;
  width: 60%;
  max-width: 70rem;
  transition: padding 0.5s;
  //border: red 1px solid;
  @media screen and (max-width: 910px) {
    width: 100%;
    padding: 0.2rem;
  }
  padding: 1rem;
  background-color: var(--el-bg-color);
  border-radius: .5em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

  @media screen and (max-width: 910px) {
    width: 100%;
    padding: 0.2rem;
    margin-top: 3.4vh; /* 移动端的 margin-top 值 */
  }
}

blog-frontend\kuailemao-blog\src\views\Amusement\Message\MessageList\index.vue

css

.bg{
  background: var(--el-bg-color);
  // 移动端距离屏幕两边距离
  margin: 0 auto; /* 水平居中对齐 */

  /* 使用媒体查询在移动端设置动态内边距 */
  @media screen and (max-width: 910px) {
    padding: 1vw; /* 移动端使用 vw 单位的动态内边距 */
  }
}