html - CSS circle not rendering at all from S3 -


i have created circle in css. sits inline text. here code:

#circle {         float: left;         width: 250px;         height: 250px;         border-radius: 125px;         border: 3px solid;         padding: 2px;         margin: 10px;         object-fit: cover;     } 

and corresponding html looks this...

<div id="circle"></div> 

this works , turns out want when i'm opening html file in browser, put html , css s3 circle disappears. (http://imgur.com/a/azces) know s3 sees code because when add image background circle shows missing image icon.

i tried both javascript , svg circle. both of these not them sit inline text , floating them had no effect. i'm not getting errors in console either.

the problem can when in index call css file in link href, tried adding or removing (/) href="/" in beginning or add css directly in head.


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -