한 컨테이너에는 2 개의 div가 있지만 브라우저 크기를 조정하면 오른쪽 div가 조정 된 브라우저 크기를 수정하기 위해 텍스트를 줄 바꿈하지 않습니다. 텍스트를 줄 바꿈하려면 어떻게해야합니까? 당신의 #container
가 498px에서와 주신 때문에오른쪽 div에 텍스트 줄 바꿈이 없음
#container {
width: 498px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -150px; /* Half of width */
margin-top: -50px; /* Half of height */
word-wrap: break-word;
overflow: visible;
padding-left:10px;
}
.left {
float: left;
width: 200px;
text-align:left;
word-wrap:break-word;
}
.right {
float: right;
width: auto;
text-align:left;
position:relative;
word-wrap: break-word;
overflow: auto;
}
</style>
</head>
<body>
<div id="container">
<div class="left">
<h3>For Students</h3>
• <a href="#savings-ambassador">Savings Ambassador</a><br>
• <a href="#appointment-coordinator">Appointment Coordinator</a><br>
• <a href="#savings-guru">Savings Guru</a>
</div>
<div class="right">
<h3>For Graduates</h3>
• <a href="#director">Director, User Acquisition and Campus Events</a><br>
• <a href="#receptionist">Receptionist/PA</a>
</div>
</div>
나는 http://jsfiddle.net/R8fXQ/1/을 보았고 브라우저 크기를 조정해도 텍스트가 여전히 올바른 div로 감싸지 않는다는 것을 알았습니다. – Bruce