# تعطيل عدد النقرات مع الروابط المسطرة؟

**URL:** https://meta.discourse.org/t/disable-click-count-with-underlined-links/164510
**Category:** Development
**Tags:** click-counter
**Created:** [18 سبتمبر 2020، 10:15م UTC](https://meta.discourse.org/t/disable-click-count-with-underlined-links/164510 "2020-09-18T22:15:23Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![j127](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/j127/32/79093_2.png) [@j127](https://meta.discourse.org/u/j127)
#### Post date: [18 سبتمبر 2020، 10:15م UTC](https://meta.discourse.org/t/disable-click-count-with-underlined-links/164510/1 "2020-09-18T22:15:23Z")

</div>

هل يعرف أحد ما إذا كان هناك طريقة لتعطيل عدادات النقر عندما تكون الروابط مُسطَّرة؟ (نُسطِّر الروابط [لأغراض إمكانية الوصول](https://webaim.org/techniques/hypertext/link_text#underlining).)

لقد قمت بإزالة عدادات النقر باستخدام الكود التالي:

```css
span.badge-notification.clicks {
    display: none;
}

```

لكن بعد ذلك يظهر فراغ مُسطَّر بعد نص الرابط كما هو موضح هنا:

![image](https://global.discourse-cdn.com/meta/original/3X/c/9/c9746deea916d4cb0ac9c31fbb2c66a6c0b38cfd.png)

يبدو أن كود HTML كالتالي:

```html
<em dir="ltr">
    <strong dir="ltr">
        <a href="https://example.com/" dir="ltr">
            نص الرابط <span class="badge badge-notification clicks" title="785 clicks" dir="ltr">785</span>
        </a>
    </strong>
</em>

```

هل توجد طريقة لإزالة ذلك الفراغ الإضافي الموجود مباشرة قبل بداية وسم `<span>`؟

(المشكلة موجودة حتى لو لم يكن عداد النقر مخفيًا، لأن الخط التسطيري يمتد إلى ذلك الفراغ الإضافي.)

---

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [20 سبتمبر 2020، 2:33م UTC](https://meta.discourse.org/t/disable-click-count-with-underlined-links/164510/2 "2020-09-20T14:33:02Z")

</div>

**مرحبًا جوش،**

جرب هذا في الواقع؛ فـ `display: inline-block;` هي التي تُحدث السحر. 🙂

```
.cooked a {
    text-decoration: underline;
    font-weight: bold;
    display: inline-block;
}

```

---

<div class="post-metadata">

### Author: ![j127](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/j127/32/79093_2.png) [@j127](https://meta.discourse.org/u/j127)
#### Post date: [20 سبتمبر 2020، 8:41م UTC](https://meta.discourse.org/t/disable-click-count-with-underlined-links/164510/3 "2020-09-20T20:41:46Z")

</div>

شكرًا، لقد نجح الأمر. 🙂

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [20 أكتوبر 2020، 8:51م UTC](https://meta.discourse.org/t/disable-click-count-with-underlined-links/164510/4 "2020-10-20T20:51:30Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
