0

Please see the JSFiddle.

This is an adaptive design with "vw" parameters in the code. I want Text_1, Text_2 and Text_3 be aligned horizontally, which means that when i change the browser's window size, the distance from the left side of the screen to the beginning of the text is the same for those 3 words. With the current code I align them (via "margin" property), but as soon as the browser's window size changes, Text_2 and Text_3 move relatively to Text_1 (to the right when window size dicreases, to the left when it increases). What is wrong in the code please?

<div class="meaning">
<ol class="circle">
<li>Text_1</li>
<ul>
  <li><span class="example">Text_2</span></li>
  <li><span class="example_translated">Text_3</span></li>     
</ul>
</ol>
</div>

.meanings_and_examples {
display: flex;
flex-direction: column;
}

.meaning {
font-family: Tahoma, Geneva, sans-serif;
width: auto;
text-align: left;
color: #1f2c60;
font-weight: 700;
word-wrap: break-word;
text-shadow: 0.06em 0.06em 0.09em rgba(0, 0, 0, 0.2);
margin-right: 1%;
font-size: calc(0.5em + 2.3vw);
}

ol.circle {
list-style-type: none;
}

li {
line-height: calc(1.1em + 1.5vw);
}

ol.circle > li {
counter-increment: item;
margin: 0% 0% 0.2% 1.3em;
}

ol.circle > li::before {
content: counter(item);
display: inline-block;
text-align: center;
border-radius: 100%;
width: calc(1.2em + 1.5vw);
background: #1f2c60;
color: white;
box-shadow: 0.06em 0.06em 0.09em rgba(0, 0, 0, 0.2);
margin: 0% 3.5% 0% -2.4em;
}

ul {
list-style-type: none;
}

.example {
width: auto;
text-align: left;
font-weight: 400;
}

.example_translated {
width: auto;
text-align: left;
font-weight: 400;
color: #5d78e5;
}
4

2 回答 2

0

我不确定在 ol 中插入 ul 有什么意义。但我认为如果不是强制性的,你应该单独使用它们,因为你正在枚举我所看到的相同类型的元素。

然后你的利润有几个问题:你的反对​​者有width: calc(1.2em + 1.5vw);,但你的利润是margin: 0% 3.5% 0% -2.4em;

我猜这是通过尝试不同的值来实现的。

但是你的 couter 女巫width: calc(1.2em + 1.5vw);正在将第一个元素从列表中推出。

因此,如果您希望列表项对齐,边距应该考虑。所以你的柜台应该有类似的边距margin: 0% 3.5% 0% calc(-3.5% - 1.2em - 1.5vw);

我在 这里做了一个工作示例。我不确定你是否想要这样,但你可以从这里开始。

但我不得不问:你真的需要一个和一个,或者你只是使用它们,这样你就可以在一些元素之前添加计数器?因为最好只使用一个类(用于计数器)并为所有元素使用一个单独的列表。

于 2019-11-05T16:00:42.310 回答
0

好的,您有很多事情要做,对于您的下一个问题,我将删除示例不需要的任何代码,所有样式等。接下来你一起使用了太多的动态宽度,正如 Paulie_D 所说,你不能在ul -tag 或ol -tag中放置除li -tags之外的任何东西。

主要问题是您有两个列表,一个在另一个列表中,其中填充非常动态,我尝试更改它以使填充与项目符号的动态宽度相匹配。

我保留了您的 HTML 并更改了一些 CSS,使其表现得如您所愿,但您确实应该考虑新的 HTML 设置。

.meanings_and_examples {
  display: flex;
  flex-direction: column;
}

.meaning {
  font-family: Tahoma, Geneva, sans-serif;
  width: auto;
  text-align: left;
  color: #1f2c60;
  font-weight: 700;
  word-wrap: break-word;
  text-shadow: 0.06em 0.06em 0.09em rgba(0, 0, 0, 0.2);
  margin-right: 1%;
  font-size: calc(0.5em + 2.3vw);
}

ol.circle {
  list-style-type: none;
  border: 2px solid purple;
  position: relative;
  padding-left: 10vw;
}

li {
  line-height: calc(1.1em + 1.5vw);
 
}

ol.circle > li {
  counter-increment: item;
  margin: 0% 0% 0.2% 0;
  border: 2px solid orange;
  padding: 0;
  position: relative;
 }

ol.circle > li::before {
  content: counter(item);
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  background: #1f2c60;
  color: white;
  box-shadow: 0.06em 0.06em 0.09em rgba(0, 0, 0, 0.2);
  width: calc(1.2em + 1.5vw);
  transform: translateX(-100%);
 }

ul {
  list-style-type: none;
  padding-left: 0;
  border: 2px solid red;
}

.example {
  width: auto;
  text-align: left;
  font-weight: 400;
}

.example_translated {
  width: auto;
  text-align: left;
  font-weight: 400;
  color: #5d78e5;
}
<div class="meaning">
<ol class="circle">
  <li>Text_1</li>
   <ul>
      <li><span class="example">Text_2</span></li>
      <li><span class="example_translated">Text_3</span></li>     
   </ul>
</ol>
</div>

有关您要求的行为,请参阅我修改过的小提琴。

于 2019-11-05T16:06:27.943 回答