ホームページ >ウェブフロントエンド >htmlチュートリアル >文字と漢字は折り返すことができますが、句読点は折り返すことができません_html/css_WEB-ITnose

文字と漢字は折り返すことができますが、句読点は折り返すことができません_html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-21 09:00:253299ブラウズ


図に示すように

コードの一部は次のとおりです:

<div class="chatBox">				<div class="chatPicLeft">					<img src="../static/app/images/alice.png" style="height:100%;width:100%"/>				</div>				<div class="chatContentLeft">					<div class="chatBoxLeft">						<span class="textClass">hello.你好呀!标点不会自动换行标点不会自动换行标点不会自动换行。。。。。。。。。。。。。。。。。。。。。。。。</span>					</div>				</div>			</div>						<div class="chatBox">				<div class="chatPicRight">					<img src="../static/app/images/alice.png" style="height:100%;width:100%"/>				</div>				<div class="chatContentRight">					<div class="chatBoxRight">						<span  class="textClass">hello</span>					</div>				</div>			</div>						<div class="chatBox">				<div class="chatTime"><span>12:30</span></div>			</div>						<div class="chatBox">				<div class="chatPicLeft">					<img src="../static/app/images/alice.png" style="height:100%;width:100%"/>				</div>				<div class="chatContentLeft">					<div class="chatBoxLeft">						<span class="textClass">标点不会自动换行标点不会自动换行标点不会自动换行标点不会自动换行标点不会自动换行标点不会自动换行hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello</span>					</div>				</div>			</div>		</div>


.chatBox{	padding:1rem 1rem 0rem 1rem;	position:relative;}.chatPicLeft{	height:2.5rem;	width:2.5rem;	float:left;	position:absolute;}.chatContentLeft{	margin-left:3.5rem;	margin-right:4.5rem;}.chatPicRight{	height:2.5rem;	width:2.5rem;	right:1rem;	float:right;}.chatContentRight{	text-align:right;	margin-left:4.5rem;	margin-right:3.5rem;}.chatTime{	text-align:center;}.input{	position:fixed;	bottom:0;	z-index:9999;	height:3rem;	width:100%;	background-color:gray;}.textClass{	word-break:break-all;}.chatBoxLeft{	display:inline-block;	padding:0.5rem;	background-color:#ffffff;	-webkit-border-radius:0.3rem;	-moz-border-radius:0.3rem;	-o-border-radius:0.3rem;	border-radius:0.3rem;}.chatBoxRight{	display:inline-block;	padding:0.5rem;	background-color:#ffffff;	-webkit-border-radius:0.3rem;	-moz-border-radius:0.3rem;	-o-border-radius:0.3rem;	border-radius:0.3rem;}


ディスカッションへの返信 (解決策)

.textClass{	word-break: break-all;	word-wrap: break-word;}

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。