首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >将照片添加到列中

将照片添加到列中
EN

Stack Overflow用户
提问于 2020-02-21 16:39:59
回答 2查看 48关注 0票数 0

我正在尝试创建一个新手的导演致敬页面,并有一个问题,以对齐列中的照片。首先,我将布局放在两栏中,并尝试在左侧编写Infos,在右侧插入照片。问题是#best-scenes ID不能正常工作,正在定义列间距、列规则颜色...请看来自Chrome的图片,看看它是什么样子。我也尝试添加绝对/相对,但没有成功。

提前谢谢。

代码语言:javascript
运行
复制
body {
  text-align: center;
}

h2 {
  color: #32815b;
}

h1 {
  font-size: 50px;
  color: #08500b;
}

#portrait_image {
  text-align: center;
  height: 300px;
}

#image {
  height: 150px;
  width: 250px;
  object-fit: cover;
  object-position: center;
}

#img-caption {
  font-family: "Nunito Semibold";
  font-size: 10px;
}

#content {
  display: grid;
  grid-template-columns: 30% 70%;
}

#Best-scenes {
  column-count: 2;
  column-rule-color: #e6e6e7;
  column-gap: 20px;
}
代码语言:javascript
运行
复制
<h1 id="title"> Wong Kar Wai </h1>
<div id="img-div">
  <img src="images/wongkarwai_portrait.jpg" alt="Wong Kar Wai Portrait" id="portrait_image">
  <p id="img-caption">
    <em>Portrait of Wong Kar Wai</em> </p>
</div>
<div id="content">
  <div id="tribute-info">
    <p>Wong Kar-wai (born 17 July 1956) is a Hong Kong Second Wave filmmaker, internationally renowned as an auteur for his visually unique, highly stylised, emotionally resonant work, including Ah fei zing zyun (1990), Dung che sai duk (1994), Chung Hing
      sam lam (1994), Do lok tin si (1995), Chun gwong cha sit (1997), 2046 (2004) and My Blueberry Nights (2007), Yi dai zong shi (2013). His film Fa yeung nin wa (2000), starring Maggie Cheung and Tony Leung, garnered widespread critical acclaim. Wong's
      films frequently feature protagonists who yearn for romance in the midst of a knowingly brief life and scenes that can often be described as sketchy, digressive, exhilarating, and containing vivid imagery. Wong was the first Chinese director to
      win the Best Director Award of Cannes Film Festival (for his work Chun gwong cha sit in 1997). Wong was the President of the Jury at the 2006 Cannes Film Festival, which makes him the only Chinese person to preside over the jury at the Cannes Film
      Festival. He was also the President of the Jury at the 63rd Berlin International Film Festival in February 2013. In 2006, Wong accepted the National Order of the Legion of Honour: Knight (Highest Degree) from the French Government. In 2013, Wong
      accepted Order of Arts and Letters: Commander (Highest Degree) by the French Minister of Culture.</p>

  </div>
  <div id="Best-scenes">
    <h2> Best Scenes of Wai </h2>
    <div><img src="images/1.png" alt="Wong Kar Wai Portrait" id="image"></div>
    <div><img src="images/d961eb00-4c74-11e9-8e02-95b31fc3f54a_image_hires_162650.jpg" alt="movie_scene" id="image"></div>
    <div><img src="images/Days-of-Being-Wild.jpg" alt="movie_scene" id="image"></div>
    <div><img src="images/Happy-Together.jpg" alt="movie_scene" id="image"></div>
    <div><img src="images/in_the_mood_for_love.jpg" alt="movie_scene" id="image"></div>
    <div><img src="images/In-The-Mood-For-Love-1.jpg" alt="movie_scene" id="image"></div>
    <div><img src="images/maxresdefault.jpg" alt="movie_scene" id="image"></div>
    <div><img src="images/ndywmhpclyyhznfljwgn.jpg" alt="movie_scene" id="image"></div>
  </div>
</div>

<!-- <div id="footer">
    <a href="https://www.imdb.com/name/nm0939182/bio?ref_=nm_ov_bio_sm" target="_blank" id="tribute-link">
      Learn more about Wong Kar Wai
  </div> -->

EN

回答 2

Stack Overflow用户

发布于 2020-02-21 16:53:54

您必须添加以下内容:

代码语言:javascript
运行
复制
#Best-scenes {
  display: flex;
  flex-direction: column;
}
票数 0
EN

Stack Overflow用户

发布于 2020-02-21 19:33:18

代码语言:javascript
运行
复制
#image
{
    height: 250px;
    width: 500px;
    object-fit: cover;
    object-position: center;
}

我找到了一个解决方案,通过改变列中照片的大小。但是仍然不理解为什么object-position: center;在这种情况下不起作用。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/60334893

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档