I use PhpStorm 2017.2.4.
When write <table>
tag and type space to insert some attributes like bordercolor
I cant see bordercolor
attribute in code completion but it show in Adobe DreamWeaver CC.
When I wrote bordercolor
manually PhpStorm displays a warning
Attribute bordercolor is not allowed here".
I changed Default HTML language level to HTML 4.0 in : File | Settings | Language & Frameworks| Schemas and DTDs| Default XML Schemas but only warning was disabled and bordercolor
did not appear in code completion list yet.
Why is this problem? How can I solve it?
I use CSS but I want to change border-color of one of the tables differently from the base of the styles created .
I'm afraid some of the old PHP and HTML codes and tags that I knew well, would not be on the list, and I have to learn things that are my scheduled plan for after the completion of this project and for now I dont have enough time to learn new content.
Please help me to solve my problem...
style
attribute for<table>
if you want to hardcode it)?bordercolor
attribute is deprecated AFAIK -- I do not see it in allowed attribute list in HTML 4 spec w3.org/TR/html401/struct/tables.html#h-11.2.1. – LazyOne<table style="border-color: #eee;">....</table>
-- pretty similar to what you are trying to use withbordercolor="#eee"
– LazyOne