简体   繁体   中英

PhpStorm CSS code completion with inline style

I have a sample.phtml partial in a ZF 1 environment. CSS files are included in the head.phtml file.

If I construct in sample.phtml a style section like following the CSS code completion will not work, only for text-color1 .

<style>
    .text-color1 {
        color: #fff;
    }
</style>

If I delete this style section the CSS code completion will work fine in the partial.

Any suggestions?

AFAIK it works as originally designed: if you have specific stylesheet referenced (inline or external) then code completion will offer entries from them only; if none referenced then all possible external files will be on offer.

At the moment there is no workaround (I would think that invoking Ctrl + Space (or whatever you may have there for code completion popup) once again would help .. but it does not seems to do anything) .

https://youtrack.jetbrains.com/issue/WEB-7317 -- watch this ticket (star/vote/comment) to get notified on progress.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM