I have this piece of code but I am unable to wrap word.
<div class="added-link">
<input type="submit" style="color: #000000;" class="addedlink" id="abc" value="User Survey Confidentiality Statement" name="linbutton">
</div>
I have this piece of code but I am unable to wrap word.
<div class="added-link">
<input type="submit" style="color: #000000;" class="addedlink" id="abc" value="User Survey Confidentiality Statement" name="linbutton">
</div>
Assign some fixed width
to your <input type="submit" />
and use white-space: normal;
OR you can just use a new line (cheap way) in your source HTML
value="User Survey
Confidentiality Statement"
<input type="submit" class="addedlink" value="User Survey Confidentiality Statement" name="linbutton">
.addedlink {
color: #000000;
white-space: normal;
width: 150px;
}