当前位置: 首页 > 知识库问答 >
问题:

我的CSS列不是紧挨着的

宦琪
2023-03-14

我的网站上有2个css栏目:右边的是25%,左边的是75%。但是,现在它不显示右栏,左栏占100%。如果我想把东西放在左栏,它会把它放在页面的底部。我改变了一个不相关的东西,我甚至不记得是什么,现在整个东西都不起作用了。我需要修理什么?

我得基本HTML:

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175481126-1"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-175481126-1');
</script>

<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
font-family: Tahoma, Geneva, sans-serif;
background-color: #333;
}
li {
float: left;
border-right: 1px solid #bbb;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change the link color to #111 (black) on hover */
 li a:hover {
   background-color: #111;
   color: white;
   text-decoration:none;
 }

/* for buttons*/
.paging {
background-color: #333;
border: none;
color: white;
padding: 8px 14px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
}
button:hover {
background-color: #111;
}

.register {
  float: right;
}

.paging {
  background-color: #333;
  border: none;
  color: white;
  padding: 8px 14px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: Tahoma, Geneva, sans-serif;
}
button:hover {
  background-color: #111;
}

/* title */

.title {
  color: black;
  padding: 10px;
  text-align: center;
  font-size: 40px;
  font-family: Tahoma, Geneva, sans-serif;
  Color: black;
  text-decoration: none;
}

/* descriptions */

.description {
  color: black;
  padding: 15px;
  font-family: Tahoma, Geneva, sans-serif;
  text-align: left;
  font-size: 13px;
}

/* embedd url */
.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
    margin-left: auto;   /* Automatic margin from left */ 
    margin-right: auto; /* Automatic margin from right */
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* make columns */

.ads {
  float: right;
  width: 25%;
  padding-right: 3%;
  padding-left: 3%;
  background-color: #E4E9ED;
}

}
.videos {
  float: left;
  width: 75%;
  padding-right: 10%;
  padding-left: 10%;
}

.banner {
  float: left;
  width: 100%;
  height: 5%;
  background-color: red;
  color: white;
  text-align: center;
}

/* header */
.header {
  background-color: #F1F1F1;
  text-align: center;
  padding: 20px;
  font-family: Tahoma, Geneva, sans-serif;
}
</style>

<html>

{% load static %}
<link rel="shortcut icon" type="image/png" href="{% static 'images/favicon.ico' %}"/>

<div class="header">
  <a href="/">
  <img src="https://i.ibb.co/5Rqps7F/logo-black.png" alt="Computer Man">
</a>
</div>

<ul>
  <li class="all"><a href="/">All videos</a></li>
  <li class="stam"><a href="/stam">Stam videos</a></li>
  <li class="music"><a href="/music">Music videos</a></li>
  <li class="news"><a href="/news">News videos</a></li>
  <li class="contact"><a href="/contact">Contact</a></li>
  <li class="register"><a href="/register">Login/Register</a></li>
</ul>

<div class="banner">
    <text align="center">We are still developing our site, so we may not be able to update videos as often as we want</text>
</div>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>

我的网页HTML:

{% include 'base.html' %}
<style>
    .{{ category }} {
        background-color: grey;
    }
</style>

<div class="row">
    <div class="videos">
    {% autoescape off %}
            <h1 class="title"> {{ video_.title }} </h1>
            {% ifnotequal video_.tag 'none' %}
                <small align = left> {{ video_.tag }} </small>
            {% endifnotequal %}
            <div class="iframe-container"><p align="center"> {{ video_.url }}</p></div>
            <div class="description"> {{ video_.description }} </div>
            <hr/>

{% endautoescape %}
</div>
</div>

<div class="row">
    <div class="ads">
        {% for ad in ad_item %}
            {% ifequal ad.redirect 'False' %}
                <img src="{{ ad.pic }}"></img>
            {% endifequal %}
            {% ifnotequal ad.redirect 'False' %}
                <a href="{{ ad.redirect }}"><img src="{{ ad.pic }}"></img></a>
            {% endifnotequal %}
        {% endfor %}
    </div>
</div>

你可以在tachlis.herokuapp.com上看到这个网站,你会看到每件事都是一个专栏,笑脸图片一直在底部,而不是在页面的右侧。

注意:这是一个django web应用程序,所以可能有几行没有意义。

共有1个答案

苏伟志
2023-03-14

只需将视频广告div放在同一行中,如以下所示,而不是放在不同的

<div class="row">
    <div class="videos">...</div>
    <div class="ads">...</div>
</div>

以前,当您有两个不同的时,视频类占据第一个的75%,而广告类占据第二个的25%。

 类似资料:
  • 在我的html页面中,我在一个容器div中有两个div。两个内部div有一个“position:aboslute”。因为它们必须被放置在集装箱div的左下角。 当容器div只有一个内部div时,这非常有效。但是当我添加第二个div时,第二个div会被放置在第一个内部div的顶部。这当然有道理。但现在我正试图找到一种方法,让它们彼此相邻,而不是相互重叠。 生成内部div。所以我不能手动为它们添加ID

  • 在一个有2%左右填充的容器中,我有两个div框。左侧div框的宽度固定为200px,右侧边距固定为60px。我想要正确的div调整它的宽度,浏览器窗口变小/变大。我如何实现红色框的宽度(独立于浏览器的宽度)一直填充到容器的rigth填充开始,而蓝色div保持其200px? JSfiddle:http://jsfidle.net/3vhrst19/3/ HTML: CSS:

  • 我的页面上有2个css栏:左边的是75%,右边的是25%。然而,由于某种原因,右栏稍微突出,使它比页面更宽(见下图)。我如何使两个列在一起的宽度与徽标在顶部? 这是我的基本HTML: 这是页面HTML: 你也可以在我的网站上看到tachlis.herokuapp.com(这就是问题所在)。

  • 这是我的login.html文件(视图) 请我需要帮助,我已经通过了关于这个主题的另一个帖子,但没有一个似乎有效。 我的css文件放在src/main/resources/public下 src/main/resources/pubic/css

  • 我刚刚找到以下代码,它提供了一个异步任务,但立即得到结果(因此,如果我理解正确,它会阻塞当前线程,直到结果可用为止)。 它有效率吗? 如果在调用外部 API 时正确处理了超时,我是否需要这个可完成的未来? 这样简化代码可以吗?

  • null null 这将创建2行,第一行高度为100px,第二行高度为。第二行中的2列具有宽度。 是否可以通过CSS网格/FlexBox将第2行的2列水平居中?即。每行的列数不同。 我正试图解决浏览器中CSS网格框架的一个琐碎的使用问题。如果使用FlexBox构建网格,这是很容易实现的。 但是我能用CSS网格实现它吗? 这里是一个我试图实现的代码本演示。