diff --git a/src/api/sfc-css-features.md b/src/api/sfc-css-features.md
index 44cec993..1e801440 100644
--- a/src/api/sfc-css-features.md
+++ b/src/api/sfc-css-features.md
@@ -2,7 +2,7 @@
## Scoped CSS {#scoped-css}
-When a `
```
-The above will be compiled into:
+উপরে কম্পাইল করা হবে:
```css
.a[data-v-f3f3eg9] .b {
@@ -55,12 +55,12 @@ The above will be compiled into:
```
:::tip
-DOM content created with `v-html` are not affected by scoped styles, but you can still style them using deep selectors.
+`v-html` দিয়ে তৈরি DOM কন্টেন্ট স্কোপড স্টাইল দ্বারা প্রভাবিত হয় না, তবে আপনি এখনও ডীপ সিলেক্টর ব্যবহার করে তাদের স্টাইল করতে পারেন।
:::
### Slotted Selectors {#slotted-selectors}
-By default, scoped styles do not affect contents rendered by ``, as they are considered to be owned by the parent component passing them in. To explicitly target slot content, use the `:slotted` pseudo-class:
+ডিফল্টরূপে, স্কোপড স্টাইলগুলি `` দ্বারা রেন্ডার করা কন্টেন্টকে প্রভাবিত করে না, কারণ সেগুলিকে প্যারেন্ট কম্পোনেন্টের মালিকানাধীন বলে মনে করা হয়।
```vue
```
-The resulting classes are hashed to avoid collision, achieving the same effect of scoping the CSS to the current component only.
+সংঘর্ষ এড়াতে ফলস্বরূপ ক্লাসগুলি হ্যাশ করা হয়, শুধুমাত্র বর্তমান কম্পোনেন্টে CSS স্কোপ করার একই ইফেক্ট অর্জন করে।
-Refer to the [CSS Modules spec](https://github.com/css-modules/css-modules) for more details such as [global exceptions](https://github.com/css-modules/css-modules#exceptions) and [composition](https://github.com/css-modules/css-modules#composition).
+আরও বিস্তারিত জানার জন্য [CSS Module spec](https://github.com/css-modules/css-modules) দেখুন যেমন [global exceptions](https://github.com/css-modules/css-modules) #exceptions) এবং [composition](https://github.com/css-modules/css-modules#composition)।
### Custom Inject Name {#custom-inject-name}
-You can customize the property key of the injected classes object by giving the `module` attribute a value:
+আপনি `module` অ্যাট্রিবিউটকে একটি মান দিয়ে ইনজেকশন করা ক্লাস অবজেক্টের প্রোপার্টি কী কাস্টমাইজ করতে পারেন:
```vue
@@ -140,7 +140,7 @@ You can customize the property key of the injected classes object by giving the
### Usage with Composition API {#usage-with-composition-api}
-The injected classes can be accessed in `setup()` and `