I want to add css into component [Angular 4]. I try to add this into "resume.component.ts" by styleUrls, but I can't access url of assets !!!
Please help me add css this into component. Thanks all :D

I want to add css into component [Angular 4]. I try to add this into "resume.component.ts" by styleUrls, but I can't access url of assets !!!
Please help me add css this into component. Thanks all :D

There are many ways of importing CSS file into Angular application.
Angular follows the component structure (angular cli) which will provide you CSS/HTML/TS/Spec.ts file per component.
So you can simply add CSS file for that particular component in @component's styleUrls property (which accept array of file names) by just adding file name , no need to add full path there.
If you want to add some global CSS in your application then you can add it into the .angular-cli.json file (as you are using angular v4).
Another way, if you want to import CSS files into another CSS then you can use simply import syntax like this using full path
@import '/assets/css/yourstyle.css';