1
我正在PhpStorm 2016.3.2中工作。在我的HTML文件中有時會發現<style>
標籤並在其中縮小CSS。在PhpStorm中Unminifying CSS
是否可以創建一個快捷方式來取消此代碼中的代碼?
例如,下面的代碼:
<style>.arrow{fill:none;stroke:#231f20;stroke-linecap:round;stroke-miterlimit:10;stroke-width:20px;}</style>
應該
看起來是這樣的:
<style>
.cls-1 {
fill: none;
stroke: #231f20;
stroke-linecap: round;
stroke-miterlimit: 10;
stroke-width: 20px;
}
</style>
你嘗試過'Cmd' +'Alt' +'L'嗎? – Sebastian
是的......這不適合這個。 – bashkovpd
請確保您禁用選項:首選項>編輯器>代碼樣式> CSS>選項卡'其他'>「保留單行塊」(http://imgur.com/a/QFnG4) – Sebastian