Boostrap 3 class not suggesting!

已回答

I am using php Storm version (2016.3.2). Bootstrap class is showing well in it. But when i use a inline css i a view page , it stop showing class suggestion! If i don't use @section('css') in view file, bootstrap class is suggested.

my master layout (head ):

    {!!Html :: style('css/bootstrap.min.css')!!}

  @yield('css')

 

A view file-(abc.blade.php):

@section('css')

       <style>
        #manifestTblb td{
            background-color: #dbd3ff;
        }

        .selectedRow{
            background-color:#dbd3ff!important;
        }
    </style>
@endsection

0

The problem is caused by embedded <style> block - if it's there, only styles from this block are available in completion. See https://youtrack.jetbrains.com/issue/WEB-2223 and linked tickets

0
Avatar
Permanently deleted user

But it's OK in sublimeText editor. Is there any way to get suggestion in phpsrorm?

0

请先登录再写评论。