I want my button to link to a html file I have and such. But it isn't inside the borders I set for p. Why is it doing this? When I enclose it in p it's still outside and when I put it outside p it's still beyond the border. I want the button to be at the bottom right inside the borders where the 'something something' (test words) are. What am I missing here? Also don't worry about the black circle next to the button, it's not there when the button is on the actual site.
<body>
<p class="news1">something something
<ul class="readmore">
<li><a href="#">read more</a></li>
</ul>
</p>
<br>
</div>
</body>
And the css
p.news1 {
color: #f9a724;
text-align:left;
border-style: solid;
border-color: #f9a724;
word-wrap: break-word;
line-height: 100px;
margin-right:50px;
padding:10px;
margin-left:50px;
font-family:Lato-Light;
}
ul.readmore li a{
display: block;
position:absolute;
transition: .4s ease;
padding: 8px 25px;
color: #000000;
background: #f9a724;
text-decoration: none;
}
ul li a:hover{
color: #f9a724;
background: #000000;
}