html - Unexpected DIV border lines on ipad -


as can see on picture below, there's kind of black border line when @ website on ipad. know why , how read of that? many thanks, enter image description here

.banner2 {     position: absolute;     top: 40px;     left: 40px;     display: inline;     padding: 20px;     background: #fff;     color: #2165cb;     font-weight: 400; } .banner3 {     position: absolute;     top: 110px;     left: 80px;     display: inline;     padding-top: 5px;     padding-right: 20px;     padding-bottom: 5px;     padding-left: 20px;     background: #2690cd;     color: #fff; } 

i presume they're images can use:

.banner2 img, .banner3 img{     border: 0; } 

if they're not images add border: 0; css styles both .banner2 , .banner3.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -