gpt4 book ai didi

html - 如何使用纯 css 截断文本按钮忽略文本中的 br 或换行符

转载 作者:太空宇宙 更新时间:2023-11-04 10:10:40 24 4
gpt4 key购买 nike

我正在尝试在纯 CSS 中实现一个截断的文本按钮。不幸的是,“显示更多”按钮并没有忽略预告片和文本正文中的 br 标签或任何其他相关的 html,并且它被向下推,在预告片文本下方留下了太多的空白。 “显示更多”按钮应该紧挨着预告文本中的最后一个词,我希望能够在不影响显示更多按钮的情况下创建换行符。这是我的尝试:

https://jsfiddle.net/38vpy56q/

html:

<div>
<input type="checkbox" class="read-more-state" id="post-1" />

<p class="read-more-wrap">

Clifton Benevento is pleased to present "Thinking Creatively With Pictures",
a solo exhibition of paintings and a video by New York based artist Sofia Leiby.
<br />br />

<span class="read-more-target">
Leiby’s research in graphology led her to the field of psychometrics...
<br /> <br />
Leiby has indexed the graphic “stimuli” from The Wartegg Test...
<br /> <br />
Upon meeting artists Wassily Kandinsky and Paul Klee in the 1920s...
</span>
</p>

<label for="post-1" class="read-more-trigger"></label>

</div>

CSS:

.read-more-state {
display: none;
}

.read-more-target {
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
/* max-height: 999em;*/
}

.read-more-state ~ .read-more-trigger:before {
content: 'Show more';
}

.read-more-state:checked ~ .read-more-trigger:before {
content: 'Show less';
}

.read-more-trigger {
cursor: pointer;
display: inline-block;
/*padding: 0 .5em;*/
color: black;
font-size: .7em;
line-height: 1;
border: 0px solid #ddd;
br {
display: none;
}
}

最佳答案

包括label在段落内部将允许它站在文本旁边并成为 <p> 的措辞内容的一部分。而不是在 </p> 之后换行符。

你应该包括 br在 css 中也是如此,示例

  • 您可以将其从绝对切换为静态:

.read-more-state {
display: none;
}

.read-more-target{
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
}
.read-more-wrap br {position:absolute;}
.read-more-state:checked ~ .read-more-wrap br {position:static}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
/* max-height: 999em;*/
}

.read-more-state ~ p .read-more-trigger:before {
content: 'Show more';
}

.read-more-state:checked ~ p .read-more-trigger:before {
content: 'Show less';

}


.read-more-trigger {
cursor: pointer;
display: inline;
/*padding: 0 .5em;*/
color: black;
font-size: .7em;
line-height: 1;
border: 0px solid #ddd;
}

/* border-radius: .25em;
}*/
<div>
<input type="checkbox" class="read-more-state" id="post-1" />

<p class="read-more-wrap">Clifton Benevento is pleased to present “Thinking Creatively With Pictures”, a solo exhibition of paintings and a video by New York based artist Sofia Leiby. In her newest body of work, Leiby mines the rich history of “projective drawing tests”, graphic assessments originating in Gestalt psychology, to self-reflexively address the relationship between mark-making and subjectivity. <br /> <br />


<span class="read-more-target">Leiby’s research in graphology led her to the field of psychometrics, or the theory and techniques of psychological assessment, and the history of the graphic test. Used in psychology, these tests present graphic stimuli usually organized in a grid or box that the test-taker responds to with a drawing and a title. The test-taker is then analyzed based on her drawing performance, according to criteria such as drawing time, the order of the squares drawn, refusing to draw, the size and content of the drawings, crossing of the borders of the squares, etc. (artistic ability is not usually considered). Upon completion, the psychoanalyst can deduce personality and diagnose possible psychological disorders. Such criteria is recognized as subjective but still ‘scored’ according to a very particular set of rules. Similar tests are also used to measure gender-role identification, creativity and imagination in corporate hiring and even as a prerequisite exam to join the Italian Armed Forces (The Wartegg Test). The Torrance Test for Creative Thinking, which includes graphic completion components, is widely used today to identify gifted children across the U.S, although there is still a lack of research surrounding most graphic completion tests. <br /> <br />

Leiby has indexed the graphic “stimuli” from The Wartegg Test (Eugene Wartegg, 1939), The Medallion Test (W.N. de Vletter, 1942), the Torrance Test for Creative Thinking (Ellis Paul Torrance, 1958), The Test for Creative Thinking-Drawing Production (Urban & Jellen, 1995), the Franck Drawing Completion Test (Franck & Rosen, 1949), and other related exams as well as completed specimens. Using silkscreen, she collages these elements that serve as the compositional framework for abstract paintings both colorful and monochromatic. A new video, ‘How to Improve Your Handwriting’ uses humor to underscore the connection between personality and gesture. <br /> <br />

Upon meeting artists Wassily Kandinsky and Paul Klee in the 1920s, Wartegg took inspiration from Kandinsky’s graphic theories in ‘Point and Line to Plane’ when developing the stimuli of his own graphic test. In observing parallels between the field of psychometrics, art theory and criticism, Leiby brings the graphic marks relegated to psychoanalysis full circle back to the realm of fine art; working within her own test-taking environment, Leiby’s paintings function as self-assessments of the personality and creativity of the artist. </span> <label for="post-1" class="read-more-trigger"></label></p>


</div>

<img src="http://abelowdesign.com/sofialeiby/img/tcwp/3.jpg" width="400px">

https://jsfiddle.net/38vpy56q/2/

  • 或者让它 float 并切换 margin 和 clear

.read-more-state {
display: none;
}

.read-more-target{
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
}
.read-more-wrap br {float:left; margin:0 0;}
.read-more-state:checked ~ .read-more-wrap br {clear:both;margin: 0.5em 100% }
.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
/* max-height: 999em;*/
}

.read-more-state ~ p .read-more-trigger:before {
content: 'Show more';
}

.read-more-state:checked ~ p .read-more-trigger:before {
content: 'Show less';

}


.read-more-trigger {
cursor: pointer;
display: inline;
/*padding: 0 .5em;*/
color: black;
font-size: .7em;
line-height: 1;
border: 0px solid #ddd;
}

/* border-radius: .25em;
}*/
<div>
<input type="checkbox" class="read-more-state" id="post-1" />

<p class="read-more-wrap">Clifton Benevento is pleased to present “Thinking Creatively With Pictures”, a solo exhibition of paintings and a video by New York based artist Sofia Leiby. In her newest body of work, Leiby mines the rich history of “projective drawing tests”, graphic assessments originating in Gestalt psychology, to self-reflexively address the relationship between mark-making and subjectivity. <br /> <br />


<span class="read-more-target">Leiby’s research in graphology led her to the field of psychometrics, or the theory and techniques of psychological assessment, and the history of the graphic test. Used in psychology, these tests present graphic stimuli usually organized in a grid or box that the test-taker responds to with a drawing and a title. The test-taker is then analyzed based on her drawing performance, according to criteria such as drawing time, the order of the squares drawn, refusing to draw, the size and content of the drawings, crossing of the borders of the squares, etc. (artistic ability is not usually considered). Upon completion, the psychoanalyst can deduce personality and diagnose possible psychological disorders. Such criteria is recognized as subjective but still ‘scored’ according to a very particular set of rules. Similar tests are also used to measure gender-role identification, creativity and imagination in corporate hiring and even as a prerequisite exam to join the Italian Armed Forces (The Wartegg Test). The Torrance Test for Creative Thinking, which includes graphic completion components, is widely used today to identify gifted children across the U.S, although there is still a lack of research surrounding most graphic completion tests. <br /> <br />

Leiby has indexed the graphic “stimuli” from The Wartegg Test (Eugene Wartegg, 1939), The Medallion Test (W.N. de Vletter, 1942), the Torrance Test for Creative Thinking (Ellis Paul Torrance, 1958), The Test for Creative Thinking-Drawing Production (Urban & Jellen, 1995), the Franck Drawing Completion Test (Franck & Rosen, 1949), and other related exams as well as completed specimens. Using silkscreen, she collages these elements that serve as the compositional framework for abstract paintings both colorful and monochromatic. A new video, ‘How to Improve Your Handwriting’ uses humor to underscore the connection between personality and gesture. <br /> <br />

Upon meeting artists Wassily Kandinsky and Paul Klee in the 1920s, Wartegg took inspiration from Kandinsky’s graphic theories in ‘Point and Line to Plane’ when developing the stimuli of his own graphic test. In observing parallels between the field of psychometrics, art theory and criticism, Leiby brings the graphic marks relegated to psychoanalysis full circle back to the realm of fine art; working within her own test-taking environment, Leiby’s paintings function as self-assessments of the personality and creativity of the artist. </span><label for="post-1" class="read-more-trigger"></label></p>


</div>

<img src="http://abelowdesign.com/sofialeiby/img/tcwp/3.jpg" width="400px">

https://jsfiddle.net/38vpy56q/3/

  • 或显示无/初始

.read-more-state {
display: none;
}

.read-more-target{
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
}
.read-more-wrap br {display:none;}
.read-more-state:checked ~ .read-more-wrap br {display:initial;}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
/* max-height: 999em;*/
}

.read-more-state ~ p .read-more-trigger:before {
content: 'Show more';
}

.read-more-state:checked ~ p .read-more-trigger:before {
content: 'Show less';

}


.read-more-trigger {
cursor: pointer;
display: inline;
/*padding: 0 .5em;*/
color: black;
font-size: .7em;
line-height: 1;
border: 0px solid #ddd;
}

/* border-radius: .25em;
}*/
<div>
<input type="checkbox" class="read-more-state" id="post-1" />

<p class="read-more-wrap">Clifton Benevento is pleased to present “Thinking Creatively With Pictures”, a solo exhibition of paintings and a video by New York based artist Sofia Leiby. In her newest body of work, Leiby mines the rich history of “projective drawing tests”, graphic assessments originating in Gestalt psychology, to self-reflexively address the relationship between mark-making and subjectivity. <br /> <br />


<span class="read-more-target">Leiby’s research in graphology led her to the field of psychometrics, or the theory and techniques of psychological assessment, and the history of the graphic test. Used in psychology, these tests present graphic stimuli usually organized in a grid or box that the test-taker responds to with a drawing and a title. The test-taker is then analyzed based on her drawing performance, according to criteria such as drawing time, the order of the squares drawn, refusing to draw, the size and content of the drawings, crossing of the borders of the squares, etc. (artistic ability is not usually considered). Upon completion, the psychoanalyst can deduce personality and diagnose possible psychological disorders. Such criteria is recognized as subjective but still ‘scored’ according to a very particular set of rules. Similar tests are also used to measure gender-role identification, creativity and imagination in corporate hiring and even as a prerequisite exam to join the Italian Armed Forces (The Wartegg Test). The Torrance Test for Creative Thinking, which includes graphic completion components, is widely used today to identify gifted children across the U.S, although there is still a lack of research surrounding most graphic completion tests. <br /> <br />

Leiby has indexed the graphic “stimuli” from The Wartegg Test (Eugene Wartegg, 1939), The Medallion Test (W.N. de Vletter, 1942), the Torrance Test for Creative Thinking (Ellis Paul Torrance, 1958), The Test for Creative Thinking-Drawing Production (Urban & Jellen, 1995), the Franck Drawing Completion Test (Franck & Rosen, 1949), and other related exams as well as completed specimens. Using silkscreen, she collages these elements that serve as the compositional framework for abstract paintings both colorful and monochromatic. A new video, ‘How to Improve Your Handwriting’ uses humor to underscore the connection between personality and gesture. <br /> <br />

Upon meeting artists Wassily Kandinsky and Paul Klee in the 1920s, Wartegg took inspiration from Kandinsky’s graphic theories in ‘Point and Line to Plane’ when developing the stimuli of his own graphic test. In observing parallels between the field of psychometrics, art theory and criticism, Leiby brings the graphic marks relegated to psychoanalysis full circle back to the realm of fine art; working within her own test-taking environment, Leiby’s paintings function as self-assessments of the personality and creativity of the artist. </span> <label for="post-1" class="read-more-trigger"></label></p>


</div>

<img src="http://abelowdesign.com/sofialeiby/img/tcwp/3.jpg" width="400px">

http://codepen.io/gc-nomade/pen/pbJYXx

关于html - 如何使用纯 css 截断文本按钮忽略文本中的 br 或换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37645791/

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