2017-08-23 2 views
0

Ce code fonctionne très bien avec IE et Firefox, mais pour une raison quelconque, la plupart des divs ne seront pas affichés dans Chrome. Je ne sais pas ce que je manque ici. il y a beaucoup de html et css donc j'inclus juste un extrait ici avec un lien. Toute aide me le faire savoir mes erreurs serait grandement appréciéDivs sont cachés dans Chrome

https://jsfiddle.net/Dude_Abides/Lau6qg1b/

<div class="left"> 
<div class="articleHeader"> 
<h3 class="articleHeaderContent">President's Corner</h3> 
</div><!-- end articleHeader --> 

<img src="images/000-BillyElliott.jpg" alt="Author Pic" style="height:100px; width:100px;" class="authorPic"> 

<br> 

<div class="authorHeader"> 
<p class="authorName">Billy Elliott</p> 
<br> 
<p class="authorTitle">President</p> 
</div><!-- end authorHeader --> 

<br> 

<p class="aP">If you have been with the company long, I'm sure you've heard we have a goal of 15% growth in gross profit each year. As a company we have no debt and have excess capital to invest in growth. So what's slowing us down? Figuring out where we should put in new locations is easy, finding or building a new building is not that difficult, and inventory is pretty straight forward. The hardest part is finding the right people.</p> 

<p class="aP">It depends on the size of the location, but typically we need a store manager, maybe an operations manager, counter and inside sales people, warehouse and delivery people. We would prefer to promote from within. We like giving people who work for us the first chance at new opportunities, and it's easier to start a new branch with people who already know what they're doing. We find that even when we hire individuals who have experience in our industry but from outside <span class="store">Elliott Electric</span>, there is still a learning curve to doing things our way.</p> 

<p class="aP">It seems like it should be easier to find people. We already know who works for us. But yet we still have a hard time identifying people who are interested in taking on a new challenge. In most cases it would require a move because we are opening up in a new town. With over 1600 employees, it makes it difficult to know who might be interested in moving and if so, where. Of course you might not be interested this year because your kid(s) may be graduating this year, but next year or the year after that you might be interested. In some cases we need someone fully qualified and other times we can take someone with limited experience but shows the drive to learn and willingness to take on a new challenge. We post job opportunities on our website and we send out companywide emails, but we still seem to get limited responses. I don't have a solution to the problem, but my suggestion is: if you're someone interested in moving up then you need to keep putting a bug in your manager's ear so when opportunities come up everyone will know you're a candidate. If you have any suggestions, please don't be shy!</p> 
</div><!-- end left --> 
+1

Vous devez mettre un [mcve] dans la question, pas un lien vers un mur de code sur un site tiers – j08691

+0

Ok, merci. Je vais travailler un meilleur format –

Répondre

0

Vous utilisez des sélecteurs de pseudo comme ::-webkit-scrollbar. Chrome le gérera, l'autre navigateur ignorera cette ligne. Alors supprimez les lignes avec ces sélecteurs et cela fonctionnera.

See updated jsfiddle.

+0

Merci! Cela a fonctionné parfaitement –